getDeviceId method

String? getDeviceId()

获取设备ID

Implementation

String? getDeviceId() {
  _deviceId ??= PrefUtils.getString(SPKey.keyStrDeviceId);
  return _deviceId;
}