networkIdMatches method

Future<bool> networkIdMatches(
  1. List<int> serviceData
)

Checks if the generated network ids match. The network ID contained in the service data would be checked against a network id of each network key.

Implementation

Future<bool> networkIdMatches(List<int> serviceData) async {
  final result = await _methodChannel.invokeMethod(
    'networkIdMatches',
    {'serviceData': serviceData},
  );
  return result!;
}