StubbleResult constructor

StubbleResult({
  1. StubbleState? state,
  2. StubbleMessage? message,
  3. bool? pop,
  4. StubbleError? err,
  5. String? result,
})

Implementation

StubbleResult({
  this.state,
  this.message,
  this.pop,
  this.err,
  this.result,
});