WorldStorm constructor

const WorldStorm({
  1. required String name,
  2. required String kind,
  3. required String touchpoint,
  4. required int fromCall,
  5. required int toCall,
  6. required Map<String, dynamic> failure,
  7. required String description,
  8. String? method,
})

Implementation

const WorldStorm({
  required this.name,
  required this.kind,
  required this.touchpoint,
  required this.fromCall,
  required this.toCall,
  required this.failure,
  required this.description,
  this.method,
});