deviceModel property

  1. @Deprecated('Use hardwareSpecifications instead.')
String get deviceModel

The device model

Provides metadata about the hardware used for the recording.

Implementation

@Deprecated('Use hardwareSpecifications instead.')
String get deviceModel =>
    hardwareSpecifications[HardwareSpecification.deviceModel] ?? '';
  1. @Deprecated('Use hardwareSpecifications instead.')
set deviceModel (String model)

The device model

Provides metadata about the hardware used for the recording.

Implementation

@Deprecated('Use hardwareSpecifications instead.')
set deviceModel(String model) =>
    hardwareSpecifications[HardwareSpecification.deviceModel] = model;