Hint.fromJson constructor

Hint.fromJson(
  1. Map _json
)

Implementation

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