getContactKey method

  1. @override
Future<String?> getContactKey()
override

To Get Contact Key

Implementation

@override
Future<String?> getContactKey() async {
  final String? result = await methodChannel.invokeMethod('getContactKey');

  return result;
}