canGetDeviceId static method
Implementation
static Future<void> canGetDeviceId(bool flag) async {
if (defaultTargetPlatform == TargetPlatform.android) {
await _channel.invokeMethod('canGetDeviceId', {
'canGetDeviceId': flag,
});
}
}