CommentQuotedFileContent.fromJson constructor

CommentQuotedFileContent.fromJson(
  1. Map json_
)

Implementation

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