getDeviceId static method

Future<String?> getDeviceId()

get device_id @returns device_id Usageļ¼š String value = await RangersApplogFlutterPlugin.getDeviceId();

Implementation

static Future<String?> getDeviceId() async {
  return await _channel.invokeMethod('getDeviceId');
}