ReplaceImageRequest.fromJson constructor
ReplaceImageRequest.fromJson(
- Map json_
Implementation
ReplaceImageRequest.fromJson(core.Map json_)
: this(
imageObjectId: json_.containsKey('imageObjectId')
? json_['imageObjectId'] as core.String
: null,
imageReplaceMethod: json_.containsKey('imageReplaceMethod')
? json_['imageReplaceMethod'] as core.String
: null,
url: json_.containsKey('url') ? json_['url'] as core.String : null,
);