DelayedVestingAccount constructor

DelayedVestingAccount({
  1. BaseVestingAccount? baseVestingAccount,
})

Implementation

factory DelayedVestingAccount({
  BaseVestingAccount? baseVestingAccount,
}) {
  final _result = create();
  if (baseVestingAccount != null) {
    _result.baseVestingAccount = baseVestingAccount;
  }
  return _result;
}