HistoryOptions constructor

HistoryOptions({
  1. required String channel,
  2. int? start,
  3. int? end,
  4. int? limit = 10,
  5. void onSuccess(
    1. HistoryResponse
    )?,
  6. void onFailed(
    1. GResult
    )?,
})

Implementation

HistoryOptions({
  required this.channel,
  this.start,
  this.end,
  this.limit=10,
  void Function(HistoryResponse)? onSuccess,
  void Function(GResult)? onFailed,
}) : super(
  onSuccess: onSuccess,
  onFailed: onFailed,
);