SetFreezeState constructor
Implementation
factory SetFreezeState({
$core.List<$core.int>? accountId,
$core.bool? frozen,
}) {
final $result = create();
if (accountId != null) {
$result.accountId = accountId;
}
if (frozen != null) {
$result.frozen = frozen;
}
return $result;
}