AboutFeatures.fromJson constructor

AboutFeatures.fromJson(
  1. Map json_
)

Implementation

AboutFeatures.fromJson(core.Map json_)
    : this(
        featureName: json_.containsKey('featureName')
            ? json_['featureName'] as core.String
            : null,
        featureRate: json_.containsKey('featureRate')
            ? (json_['featureRate'] as core.num).toDouble()
            : null,
      );