State constructor

State({
  1. required String name,
  2. bool isInitial = false,
  3. bool isFinal = false,
})

Implementation

State({
  required this.name,
  this.isInitial = false,
  this.isFinal = false,
});