ApiResponse constructor

ApiResponse({
  1. required int statusCode,
  2. dynamic data,
  3. Map<String, String> headers = const {},
})

Implementation

ApiResponse({
  required this.statusCode,
  this.data,
  this.headers = const {},
});