destroyBitmaps function

Future destroyBitmaps()

Implementation

Future destroyBitmaps() async {
  if (Platform.isAndroid) {
    deinitAndroid();
  } else if (Platform.isIOS) {
    await deinitIosAsync();
  }
}