AccountSet constructor

AccountSet({
  1. List<int>? owner,
  2. Iterable<AccountRef>? accounts,
  3. List<int>? id,
})

Implementation

factory AccountSet({
  $core.List<$core.int>? owner,
  $core.Iterable<AccountRef>? accounts,
  $core.List<$core.int>? id,
}) {
  final _result = create();
  if (owner != null) {
    _result.owner = owner;
  }
  if (accounts != null) {
    _result.accounts.addAll(accounts);
  }
  if (id != null) {
    _result.id = id;
  }
  return _result;
}