IndexedAccount_Issuance constructor

IndexedAccount_Issuance({
  1. Int64? issuedBalance,
  2. Int64? nonLeafChildren,
  3. Int64? leafChildren,
})

Implementation

factory IndexedAccount_Issuance({
  $fixnum.Int64? issuedBalance,
  $fixnum.Int64? nonLeafChildren,
  $fixnum.Int64? leafChildren,
}) {
  final $result = create();
  if (issuedBalance != null) {
    $result.issuedBalance = issuedBalance;
  }
  if (nonLeafChildren != null) {
    $result.nonLeafChildren = nonLeafChildren;
  }
  if (leafChildren != null) {
    $result.leafChildren = leafChildren;
  }
  return $result;
}