ImageConfig.fromJson constructor

ImageConfig.fromJson(
  1. Map json_
)

Implementation

ImageConfig.fromJson(core.Map json_)
    : this(
        textRedactionMode: json_.containsKey('textRedactionMode')
            ? json_['textRedactionMode'] as core.String
            : null,
      );