Authority.fromJson constructor

Authority.fromJson(
  1. Map _json
)

Implementation

Authority.fromJson(core.Map _json)
    : this(
        hint: _json.containsKey('hint')
            ? Hint.fromJson(
                _json['hint'] as core.Map<core.String, core.dynamic>)
            : null,
      );