RemoveHeldAccountsResponse.fromJson constructor
RemoveHeldAccountsResponse.fromJson(
- Map json_
Implementation
RemoveHeldAccountsResponse.fromJson(core.Map json_)
: this(
statuses: (json_['statuses'] as core.List?)
?.map((value) =>
Status.fromJson(value as core.Map<core.String, core.dynamic>))
.toList(),
);