DirectBufferAccess constructor

const DirectBufferAccess({
  1. required Uint32List chars,
  2. required Float32List foregrounds,
  3. required Float32List backgrounds,
  4. required Uint8List attributes,
  5. required int width,
  6. required int height,
})

Creates a DirectBufferAccess.

Implementation

const DirectBufferAccess({
  required this.chars,
  required this.foregrounds,
  required this.backgrounds,
  required this.attributes,
  required this.width,
  required this.height,
});