toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final displayOptions = this.displayOptions;
  final fields = this.fields;
  final mimeType = this.mimeType;
  final objectType = this.objectType;
  final owner = this.owner;
  final source = this.source;
  final thumbnailUrl = this.thumbnailUrl;
  final updateTime = this.updateTime;
  return {
    'createTime': ?createTime,
    'displayOptions': ?displayOptions,
    'fields': ?fields,
    'mimeType': ?mimeType,
    'objectType': ?objectType,
    'owner': ?owner,
    'source': ?source,
    'thumbnailUrl': ?thumbnailUrl,
    'updateTime': ?updateTime,
  };
}