$StateError.fromJson constructor

$StateError.fromJson(
  1. Map json_
)

Implementation

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