Accessor constructor

Accessor({
  1. required String name,
  2. required Type type,
  3. required int index,
  4. bool readOnly = false,
})

Implementation

Accessor({required this.name, required this.type, required this.index, this.readOnly = false });