$Hash.fromJson constructor

$Hash.fromJson(
  1. Map json_
)

Implementation

$Hash.fromJson(core.Map json_)
    : this(
        type: json_.containsKey('type') ? json_['type'] as core.String : null,
        value:
            json_.containsKey('value') ? json_['value'] as core.String : null,
      );