JobInfo constructor Null safety

JobInfo(
  1. {required String label,
  2. String? description,
  3. required JobState state,
  4. required int retryCount,
  5. required int maxRetry}
)

Implementation

JobInfo({
  required this.label,
  this.description,
  required this.state,
  required this.retryCount,
  required this.maxRetry,
});