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