toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  if (this.contentTypeHeader != null) {
    json[r'contentTypeHeader'] = this.contentTypeHeader;
  } else {
    json[r'contentTypeHeader'] = null;
  }
    json[r'file'] = this.file;
  return json;
}