Method constructor

Method({
  1. required String name,
  2. required String description,
  3. required List<PlaceHolder> placeHolders,
  4. required List<String> translations,
})

Implementation

Method({
  required this.name,
  required this.description,
  required this.placeHolders,
  required this.translations,
});