Constant<T> constructor

const Constant<T>({
  1. required Codec<T> type,
  2. required Uint8List bytes,
  3. required List<String> docs,
})

Creates a constant object model

Implementation

const Constant({required this.type, required this.bytes, required this.docs});