Arg.fromJson constructor

Arg.fromJson(
  1. Map _json
)

Implementation

Arg.fromJson(core.Map _json)
    : this(
        anyValue: _json.containsKey('anyValue')
            ? Empty.fromJson(
                _json['anyValue'] as core.Map<core.String, core.dynamic>)
            : null,
        exactValue:
            _json.containsKey('exactValue') ? _json['exactValue'] : null,
      );