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