getOfferOfferId method

int? getOfferOfferId()

Implementation

int? getOfferOfferId() {
  if (_offer != null) {
    return _offer!.offerID.uint64;
  }
  return null;
}