getAddress method
Implementation
@override
SuiAddress getAddress() {
if (_account == null) {
throw ArgumentError("Please call setSigner method first", "signer");
}
return _account!.getAddress();
}
@override
SuiAddress getAddress() {
if (_account == null) {
throw ArgumentError("Please call setSigner method first", "signer");
}
return _account!.getAddress();
}