Mappings.fromJson constructor

Mappings.fromJson(
  1. Map json
)

Implementation

factory Mappings.fromJson(Map json) {
  return Mappings(
    modelOperations: (json['modelOperations'] as Iterable)
        .map((e) => ModelMapping.fromJson(e)),
    otherOperations: OtherOperationMappings.fromJson(json['otherOperations']),
  );
}