$StateError.fromJson constructor

$StateError.fromJson(
  1. Map json_
)

Implementation

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