Staking_TransferOwnership constructor
Staking_TransferOwnership(
{ - Int64? bucketIndex,
- String? voterAddress,
- List<int>? payload,
})
Implementation
factory Staking_TransferOwnership({
$fixnum.Int64? bucketIndex,
$core.String? voterAddress,
$core.List<$core.int>? payload,
}) {
final _result = create();
if (bucketIndex != null) {
_result.bucketIndex = bucketIndex;
}
if (voterAddress != null) {
_result.voterAddress = voterAddress;
}
if (payload != null) {
_result.payload = payload;
}
return _result;
}