getOfferSellerId method

String? getOfferSellerId()

Implementation

String? getOfferSellerId() {
  if (_offer != null) {
    return KeyPair.fromXdrPublicKey(_offer!.sellerID.accountID).accountId;
  }
  return null;
}