SystemAccess constructor

const SystemAccess({
  1. Set<Type> reads = const <Type>{},
  2. Set<Type> writes = const <Type>{},
})

Implementation

const SystemAccess({
  this.reads = const <Type>{},
  this.writes = const <Type>{},
});