Skip to content

Instantly share code, notes, and snippets.

@shubie
Last active December 7, 2018 05:04
Show Gist options
  • Save shubie/4e41deded2865773a7d823176d941d34 to your computer and use it in GitHub Desktop.
Save shubie/4e41deded2865773a7d823176d941d34 to your computer and use it in GitHub Desktop.
class Lesson {
String title;
String level;
double indicatorValue;
int price;
String content;
Lesson(
{this.title, this.level, this.indicatorValue, this.price, this.content});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment