symbol property

FutureOr<String> symbol

Returns the symbol of the token, usually a shorter version of the name.

Implementation

FutureOr<String> get symbol async {
  if (_symbol.isEmpty) _symbol = await contract.call<String>('symbol');
  return _symbol;
}