State constructor

State(
  1. String name, {
  2. bool hasAction = false,
  3. Map<String, String> parameters = const {},
})

Implementation

State(
  this.name, {
  this.hasAction = false,
  this.parameters = const {},
});