TokenBalance constructor

const TokenBalance({
  1. String? address,
  2. int? amount,
  3. int? tokenId,
})

Implementation

const factory TokenBalance({
  /// Address of the token
  String? address,

  /// Amount of token
  int? amount,

  /// ID of the token
  int? tokenId,
}) = _TokenBalance;