toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final content = this.content;
  final contentType = this.contentType;
  return {
    'Content': content,
    'ContentType': contentType,
  };
}