ClassSwitchStatus constructor

const ClassSwitchStatus({
  1. required SwitchState state,
  2. String currentClassId = '',
  3. String targetClassId = '',
  4. int retryCount = 0,
  5. int? errorCode,
  6. String? errorMessage,
})

Implementation

const ClassSwitchStatus({
  required this.state,
  this.currentClassId = '',
  this.targetClassId = '',
  this.retryCount = 0,
  this.errorCode,
  this.errorMessage,
});