getChannel method

  1. @override
Future<List<int>?> getChannel()
override

Returns the array of Glyph channels that are included in the GlyphFrame.

Implementation

@override
Future<List<int>?> getChannel() async {
  return await methodChannel.invokeMethod<List<int>>('getChannel');
}