DelegationResponse constructor
DelegationResponse({
- Delegation? delegation,
- CosmosCoin? balance,
Implementation
factory DelegationResponse({
Delegation? delegation,
$6.CosmosCoin? balance,
}) {
final result = create();
if (delegation != null) {
result.delegation = delegation;
}
if (balance != null) {
result.balance = balance;
}
return result;
}