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_['exactValue'],
    );