CloseResponse constructor

CloseResponse({
  1. required String status,
  2. required String code,
  3. required bool? data,
  4. required String? errorMessage,
})

Implementation

CloseResponse({
  required this.status,
  required this.code,
  required this.data,
  required this.errorMessage,
});