Staking_ChillAndUnbond constructor
Staking_ChillAndUnbond({
- List<
int> ? value, - CallIndices? callIndices,
- CallIndices? chillCallIndices,
- CallIndices? unbondCallIndices,
Implementation
factory Staking_ChillAndUnbond({
$core.List<$core.int>? value,
CallIndices? callIndices,
CallIndices? chillCallIndices,
CallIndices? unbondCallIndices,
}) {
final result = create();
if (value != null) result.value = value;
if (callIndices != null) result.callIndices = callIndices;
if (chillCallIndices != null) result.chillCallIndices = chillCallIndices;
if (unbondCallIndices != null) result.unbondCallIndices = unbondCallIndices;
return result;
}