CocobaseError constructor

const CocobaseError({
  1. required int statusCode,
  2. required String url,
  3. required String method,
  4. required dynamic detail,
  5. required String suggestion,
})

Implementation

const CocobaseError({
  required this.statusCode,
  required this.url,
  required this.method,
  required this.detail,
  required this.suggestion,
});