ResponseBase constructor

ResponseBase({
  1. bool error = false,
  2. List<String> messages = const [],
  3. int statusCode = HttpStatus.ok,
})

Implementation

ResponseBase({
  this.error = false,
  this.messages = const [],
  this.statusCode = HttpStatus.ok,
});