AboutFeatures.fromJson constructor

AboutFeatures.fromJson(
  1. Map json_
)

Implementation

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