fromAny static method

PeriodicVestingAccount fromAny(
  1. Any any
)

Implementation

static PeriodicVestingAccount fromAny(Any any) {
  final account = vesting.PeriodicVestingAccount.fromBuffer(any.value);
  return PeriodicVestingAccount(account);
}