height property

int get height
override

decoded image height

Implementation

int get height {
    final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
        Int32 Function(Pointer<Void>),
        int Function(Pointer<Void>)
      >('navigine_sdk_flutter_Image_height_get'));

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