getDeviceID static method

Future<String?> getDeviceID()

Implementation

static Future<String?> getDeviceID() async {
  final deviceID = await methodChannel.invokeMethod<String?>('getRangersDeivceID');
  TTFLogger.i('FlutterTTSDKManager', 'getDeviceID:$deviceID');
  return deviceID;
}