characters property

  1. @override
List<String> get characters
override

Flat list of characters representing the grid.

Implementation

@override
List<String> get characters => throw UnsupportedError(
  'Flat characters access not supported on Viewport',
);
  1. @override
set characters (List<String> val)
override

Flat list of characters representing the grid.

Implementation

@override
set characters(List<String> val) => throw UnsupportedError(
  'Flat characters access not supported on Viewport',
);