GetViewResponse<T> constructor

GetViewResponse<T>({
  1. required int? offset,
  2. required int totalRows,
  3. required List<ViewRow<T>> rows,
  4. String? updateSeq,
})

Implementation

GetViewResponse(
    {required this.offset,
    required this.totalRows,
    required this.rows,
    this.updateSeq});