RuleData constructor

RuleData({
  1. String? category,
  2. required String dispatcher,
  3. String? place,
  4. num? position,
  5. required String service,
})

Returns a new RuleData instance.

Implementation

RuleData({
  this.category,
  required this.dispatcher,
  this.place,
  this.position,
  required this.service,
});