getTestDeviceInfo method

Future<String?> getTestDeviceInfo()

获取集成测试信息的接口 android "$deviceId" ios "$deviceId"

Implementation

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