DeviceFeature.fromJson constructor

DeviceFeature.fromJson(
  1. Map json_
)

Implementation

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