Skip to content

Instantly share code, notes, and snippets.

@becek2n
Created May 8, 2020 16:16
Show Gist options
  • Save becek2n/f9f6666d6e8173b1e0d8274a6c017145 to your computer and use it in GitHub Desktop.
Save becek2n/f9f6666d6e8173b1e0d8274a6c017145 to your computer and use it in GitHub Desktop.
abstract class StepperEvent {
}
class ContinueEvent extends StepperEvent {}
class BackEvent extends StepperEvent {}
class SaveRateEvent extends StepperEvent {
final double rate;
final double volume;
SaveRateEvent({this.rate, this.volume});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment