toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'id': id,
    'createdDate': createdDate,
    'remoteId': remoteId,
    'uploadedFileURL': uploadedFileUrl,
    'metaData': metaData,
    'tags': tags,
    'transcriptionURL': transcriptionUrl,
    'transcriptionLength': transcriptionLength,
    'fileType': fileType,
    'title': title,
    'duration': duration,
  };
}