DeclararResponse constructor

DeclararResponse({
  1. required String type,
  2. required String title,
  3. required int status,
  4. required String detail,
  5. required String instance,
})

Implementation

DeclararResponse({
  required this.type,
  required this.title,
  required this.status,
  required this.detail,
  required this.instance,
});