Explanation.fromJson constructor

Explanation.fromJson(
  1. Map json_
)

Implementation

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