SlpTokenMetadata_V1NFT1Group constructor

SlpTokenMetadata_V1NFT1Group({
  1. String? tokenTicker,
  2. String? tokenName,
  3. String? tokenDocumentUrl,
  4. List<int>? tokenDocumentHash,
  5. int? decimals,
  6. List<int>? mintBatonHash,
  7. int? mintBatonVout,
})

Implementation

factory SlpTokenMetadata_V1NFT1Group({
  $core.String? tokenTicker,
  $core.String? tokenName,
  $core.String? tokenDocumentUrl,
  $core.List<$core.int>? tokenDocumentHash,
  $core.int? decimals,
  $core.List<$core.int>? mintBatonHash,
  $core.int? mintBatonVout,
}) {
  final _result = create();
  if (tokenTicker != null) {
    _result.tokenTicker = tokenTicker;
  }
  if (tokenName != null) {
    _result.tokenName = tokenName;
  }
  if (tokenDocumentUrl != null) {
    _result.tokenDocumentUrl = tokenDocumentUrl;
  }
  if (tokenDocumentHash != null) {
    _result.tokenDocumentHash = tokenDocumentHash;
  }
  if (decimals != null) {
    _result.decimals = decimals;
  }
  if (mintBatonHash != null) {
    _result.mintBatonHash = mintBatonHash;
  }
  if (mintBatonVout != null) {
    _result.mintBatonVout = mintBatonVout;
  }
  return _result;
}