getTestDeviceId method

Future<String?> getTestDeviceId()

获取SDK生成的设备的测试ID

Implementation

Future<String?> getTestDeviceId() async {
  if (!_supportPlatform) return null;
  return await _channel.invokeMethod<String?>('getTestDeviceId');
}