Staking_ChillAndUnbond constructor

Staking_ChillAndUnbond({
  1. List<int>? value,
  2. CallIndices? callIndices,
  3. CallIndices? chillCallIndices,
  4. 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;
}