Hint.fromJson constructor
Hint.fromJson(
- Map _json
Implementation
Hint.fromJson(core.Map _json)
: this(
humanReadableName: _json.containsKey('humanReadableName')
? _json['humanReadableName'] as core.String
: null,
);