DeviceFeature.fromJson constructor

DeviceFeature.fromJson(
  1. Map json_
)

Implementation

DeviceFeature.fromJson(core.Map json_)
    : this(
        featureName: json_.containsKey('featureName')
            ? json_['featureName'] as core.String
            : null,
        featureVersion: json_.containsKey('featureVersion')
            ? json_['featureVersion'] as core.int
            : null,
      );