$DeviceTypeTargetingOptionDetails.fromJson constructor

$DeviceTypeTargetingOptionDetails.fromJson(
  1. Map json_
)

Implementation

$DeviceTypeTargetingOptionDetails.fromJson(core.Map json_)
    : this(
        deviceType: json_.containsKey('deviceType')
            ? json_['deviceType'] as core.String
            : null,
      );