CheckResponse.fromJson constructor
CheckResponse.fromJson(
- Map json_
Implementation
CheckResponse.fromJson(core.Map json_)
: this(
debugString: json_['debugString'] as core.String?,
errorCode: (json_['errorCode'] as core.List?)
?.map((value) => value as core.String)
.toList(),
linked: json_['linked'] as core.bool?,
maxAge: json_['maxAge'] as core.String?,
);