nativeUIImageWithDartAsset static method

Future<UIImage?> nativeUIImageWithDartAsset(
  1. String asset
)

Implementation

static Future<UIImage?> nativeUIImageWithDartAsset(String asset) async {
  final bytes = await rootBundle.load(asset);
  return UIImage.imageWithData_(bytes.toNSData());
}