Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@MarcinusX
Created September 3, 2018 04:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcinusX/2c63ca05851f9e35b2be3d6222767401 to your computer and use it in GitHub Desktop.
Save MarcinusX/2c63ca05851f9e35b2be3d6222767401 to your computer and use it in GitHub Desktop.
class FlightStopTicket {
String from;
String fromShort;
String to;
String toShort;
String flightNumber;
FlightStopTicket(this.from, this.fromShort, this.to, this.toShort, this.flightNumber);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment