fromAny static method

ContinuousVestingAccount fromAny(
  1. Any any
)

Implementation

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