WorldTouchpoint constructor

const WorldTouchpoint({
  1. required String name,
  2. required String type,
  3. required String family,
  4. required String priority,
  5. required String contract,
  6. required List<ContractMethod> methods,
})

Implementation

const WorldTouchpoint({
  required this.name,
  required this.type,
  required this.family,
  required this.priority,
  required this.contract,
  required this.methods,
});