toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final displayName = this.displayName;
  final format = this.format;
  final name = this.name;
  final state = this.state;
  final uploadFileInfo = this.uploadFileInfo;
  return {
    'createTime': ?createTime,
    'displayName': ?displayName,
    'format': ?format,
    'name': ?name,
    'state': ?state,
    'uploadFileInfo': ?uploadFileInfo,
  };
}