DialoguewiseResponse constructor

DialoguewiseResponse({
  1. required int statusCode,
  2. required String reasonPhrase,
  3. Map<String, dynamic> response = const {},
})

Implementation

DialoguewiseResponse({
  required this.statusCode,
  required this.reasonPhrase,
  this.response = const {},
});