getShortcuts method

Future<Map> getShortcuts (
  1. String packageName
)

Implementation

static Future<Map> getShortcuts(String packageName) async{
  final Map shortcuts = await _channel.invokeMethod('getShortcuts', {'packageName': packageName});
  return shortcuts;

}