offset property

int? get offset

取得データの開始位置です。

Implementation

int? get offset => _platform.offset;
set offset (int? offset)

取得データの開始位置を設定します。

開始位置は0〜(データ総件数-1)の範囲で指定してください。

Implementation

set offset(int? offset) => _platform.offset = offset;