IndexedAccount_Issuance constructor
IndexedAccount_Issuance({
- Int64? issuedBalance,
- Int64? nonLeafChildren,
- 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;
}