Staking_TransferOwnership constructor

Staking_TransferOwnership({
  1. Int64? bucketIndex,
  2. String? voterAddress,
  3. 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;
}