CommentQuotedFileContent.fromJson constructor
CommentQuotedFileContent.fromJson(
- Map json_
Implementation
CommentQuotedFileContent.fromJson(core.Map json_)
: this(
mimeType: json_.containsKey('mimeType')
? json_['mimeType'] as core.String
: null,
value:
json_.containsKey('value') ? json_['value'] as core.String : null,
);