TokenEntry constructor
TokenEntry({
- String? tokenId,
- TokenType? tokenType,
- TokenTxType? txType,
- String? groupTokenId,
- bool? isInvalid,
- String? burnSummary,
- Iterable<
TokenFailedColoring> ? failedColorings, - String? actualBurnAtoms,
- Int64? intentionalBurnAtoms,
- bool? burnsMintBatons,
Implementation
factory TokenEntry({
$core.String? tokenId,
TokenType? tokenType,
TokenTxType? txType,
$core.String? groupTokenId,
$core.bool? isInvalid,
$core.String? burnSummary,
$core.Iterable<TokenFailedColoring>? failedColorings,
$core.String? actualBurnAtoms,
$fixnum.Int64? intentionalBurnAtoms,
$core.bool? burnsMintBatons,
}) {
final result = create();
if (tokenId != null) result.tokenId = tokenId;
if (tokenType != null) result.tokenType = tokenType;
if (txType != null) result.txType = txType;
if (groupTokenId != null) result.groupTokenId = groupTokenId;
if (isInvalid != null) result.isInvalid = isInvalid;
if (burnSummary != null) result.burnSummary = burnSummary;
if (failedColorings != null) result.failedColorings.addAll(failedColorings);
if (actualBurnAtoms != null) result.actualBurnAtoms = actualBurnAtoms;
if (intentionalBurnAtoms != null)
result.intentionalBurnAtoms = intentionalBurnAtoms;
if (burnsMintBatons != null) result.burnsMintBatons = burnsMintBatons;
return result;
}