State constructor

State(
  1. String type, {
  2. String result = 'null',
})

Implementation

State(
  this.type, {
  this.result = 'null',
});