getMatchedAppIds method

Future<List<String>> getMatchedAppIds()

Returns a list of installed applications that can handle this request.

Implementation

Future<List<String>> getMatchedAppIds() async {
  await _setAppControlData();

  final Map<String, dynamic> args = <String, dynamic>{'id': _id};
  final dynamic response =
      await _methodChannel.invokeMethod<dynamic>('getMatchedAppIds', args);
  return (response as List<dynamic>).cast<String>();
}