create static method
Implementation
static Future<android_graphics_Bitmap> create(Uint8List bitmapBytes) async {
final result = await kMethodChannel.invokeMethod<Ref>(
'android.graphics.Bitmap::create', {'bitmapBytes': bitmapBytes});
return android_graphics_Bitmap()..refId = result?.refId;
}