PermanentDelegate.fromAccountBytes constructor

PermanentDelegate.fromAccountBytes(
  1. List<int> accountBytes
)

Implementation

factory PermanentDelegate.fromAccountBytes(List<int> accountBytes) {
  final decode = _Utils.decodeFromAccount(accountBytes);
  return PermanentDelegate(delegate: decode["delegate"]);
}