ComponentCondition constructor

const ComponentCondition({
  1. String? error,
  2. String? message,
  3. required String status,
  4. required String type,
})

Default constructor.

Implementation

const ComponentCondition({
  this.error,
  this.message,
  required this.status,
  required this.type,
});