toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final body = this.body;
  final filename = this.filename;
  final headers = this.headers;
  final mimeType = this.mimeType;
  final partId = this.partId;
  final parts = this.parts;
  return {
    'body': ?body,
    'filename': ?filename,
    'headers': ?headers,
    'mimeType': ?mimeType,
    'partId': ?partId,
    'parts': ?parts,
  };
}