AFQueryError constructor

AFQueryError({
  1. required String message,
  2. int code = 100,
  3. dynamic custom,
})

Implementation

AFQueryError({
  required this.message,
  this.code = 100,
  this.custom});