getAssetPath function

  1. @deprecated
Future<String?> getAssetPath(
  1. String flutterAssetPath
)

不怎么好用

Implementation

@deprecated
Future<String?> getAssetPath(String flutterAssetPath) async {
  return kMethodChannel.invokeMethod(
    'PlatformService::getAssetPath',
    {'flutterAssetPath': flutterAssetPath},
  );
}