Service constructor

Service({
  1. String? a,
  2. Query? q,
  3. bool al = true,
  4. String? n,
  5. String? f,
  6. required Map ft,
  7. required List c,
  8. required int p,
  9. required Map pr,
})

Implementation

Service({
  this.a,
  this.q,
  this.al = true,
  this.n,
  this.f,
  required this.ft,
  required this.c,
  required this.p,
  required this.pr,

  /// Service params
});