Staking_Bond constructor
Staking_Bond({
- String? controller,
- List<
int> ? value, - RewardDestination? rewardDestination,
- CallIndices? callIndices,
Implementation
factory Staking_Bond({
$core.String? controller,
$core.List<$core.int>? value,
$0.RewardDestination? rewardDestination,
$0.CallIndices? callIndices,
}) {
final result = create();
if (controller != null) result.controller = controller;
if (value != null) result.value = value;
if (rewardDestination != null) result.rewardDestination = rewardDestination;
if (callIndices != null) result.callIndices = callIndices;
return result;
}