$StateError.fromJson constructor
$StateError.fromJson(
- 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,
);