ApiSuccess constructor

ApiSuccess({
  1. List<Data>? data,
  2. dynamic errorString,
  3. int? timestamp,
})

Implementation

ApiSuccess({
    this.data,
    this.errorString,
    this.timestamp,
});