ApiResponse constructor

ApiResponse({
  1. required int status,
  2. String? expiryDate,
  3. int? maxLaunch,
  4. String? message,
  5. Map<String, dynamic>? developerDetails,
})

Implementation

ApiResponse({
  required this.status,
  this.expiryDate,
  this.maxLaunch,
  this.message,
  this.developerDetails,
});