DestinationSchema.fromJson constructor

DestinationSchema.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DestinationSchema.fromJson(Map<String, dynamic> json) {
  return DestinationSchema(
    recordFormatType:
        (json['RecordFormatType'] as String).toRecordFormatType(),
  );
}