loadFlutterAsset method

  1. @override
Future<void> loadFlutterAsset(
  1. String key
)

Loads the Flutter asset specified in the pubspec.yaml file.

Throws a PlatformException if key is not part of the specified assets in the pubspec.yaml file.

Implementation

@override
Future<void> loadFlutterAsset(String key) {
  _callInfoList = [];
  return super.loadFlutterAsset(key);
}