getDeviceId method
Implementation
@override
Future<String?> getDeviceId(String groupKeychain) async {
final deviceId = await methodChannel.invokeMethod('getDeviceId',<String, dynamic>{
'groupKeychain': groupKeychain,
});
return deviceId;
}
@override
Future<String?> getDeviceId(String groupKeychain) async {
final deviceId = await methodChannel.invokeMethod('getDeviceId',<String, dynamic>{
'groupKeychain': groupKeychain,
});
return deviceId;
}