OtherOperationMappings.fromJson constructor

OtherOperationMappings.fromJson(
  1. Map json
)

Implementation

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