getEnsName method

  1. @override
Future<String?>? getEnsName()
override

Gets the ENS name associated with the current address.

Returns a Future that completes with the ENS name.

Implementation

@override
Future<String?>? getEnsName() async {
  return _ens ?? await _getEnsName(this);
}