OtherOperationMappings constructor

const OtherOperationMappings({
  1. required List<String> read,
  2. required List<String> write,
})

Create a new other operation mapping.

Implementation

const OtherOperationMappings({
  required this.read,
  required this.write,
});