OtherOperationMappings.fromJson constructor
OtherOperationMappings.fromJson(
- Map json
Implementation
factory OtherOperationMappings.fromJson(Map json) {
return OtherOperationMappings(
read: (json['read'] as Iterable).cast(),
write: (json['write'] as Iterable).cast(),
);
}