getSupportedSizes static method

Future<List<List<int?>>?> getSupportedSizes()

Implementation

static Future<List<List<int?>>?> getSupportedSizes() {
  return _channel.invokeMethod<List<List<int?>>?>('getSupportedSizes').catchError(() {
    print('Error');
  });
}