DeviceIdentifier.fromJson constructor

DeviceIdentifier.fromJson(
  1. Map json_
)

Implementation

DeviceIdentifier.fromJson(core.Map json_)
  : this(
      deviceBrand: json_['deviceBrand'] as core.String?,
      deviceModel: json_['deviceModel'] as core.String?,
    );