load static method

Future<bool?> load(
  1. Uint8List bytes
)

Implementation

static Future<bool?> load(Uint8List bytes) async {
  await _channel.invokeMethod('load', bytes);

  return true;
}