toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
      'createdDate': JsonConverters.toJson(createdDate, 'DateTime', context!),
      'createdBy': createdBy,
      'modifiedDate':
          JsonConverters.toJson(modifiedDate, 'DateTime', context!),
      'modifiedBy': modifiedBy,
      'deletedDate': JsonConverters.toJson(deletedDate, 'DateTime', context!),
      'deletedBy': deletedBy
    };