data property

Uint8List get data
override

binary source data of the image

Implementation

Uint8List get data {
    final _getFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
        NativeBytes Function(Pointer<Void>),
        NativeBytes Function(Pointer<Void>)
      >('navigine_sdk_flutter_Image_data_get'));

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