phone property

String get phone
override

venue's phone.

Example:

// Get venue phone
String? phone = venue.getPhone();
print('Venue phone: $phone');

Implementation

String get phone {
    final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
        NativeString Function(Pointer<Void>),
        NativeString Function(Pointer<Void>)
      >('navigine_sdk_flutter_Venue_phone_get'));

    final _phoneHandle = _getFfi(this.ptr);
    final _result = toPlatformString(_phoneHandle);
    exception.checkCallResult();
    return _result;
}