PeriodicVestingAccount constructor
PeriodicVestingAccount({
- BaseVestingAccount? baseVestingAccount,
- Int64? startTime,
- Iterable<
Period> ? vestingPeriods,
Implementation
factory PeriodicVestingAccount({
BaseVestingAccount? baseVestingAccount,
$fixnum.Int64? startTime,
$core.Iterable<Period>? vestingPeriods,
}) {
final _result = create();
if (baseVestingAccount != null) {
_result.baseVestingAccount = baseVestingAccount;
}
if (startTime != null) {
_result.startTime = startTime;
}
if (vestingPeriods != null) {
_result.vestingPeriods.addAll(vestingPeriods);
}
return _result;
}