Skip to content

Instantly share code, notes, and snippets.

@dimsuz
Created February 19, 2020 12:45
Show Gist options
  • Save dimsuz/4262b532c9def5670f8012062fd8e47d to your computer and use it in GitHub Desktop.
Save dimsuz/4262b532c9def5670f8012062fd8e47d to your computer and use it in GitHub Desktop.
desc
class BookingCheckoutData {
}
class MyDataClass {
}
BookingCheckoutData hello() {
return getData() ?? getBookingCheckoutData();
}
MyDataClass getData() {
return MyDataClass();
}
BookingCheckoutData getBookingCheckoutData() {
return BookingCheckoutData();
}
void main() {
for (int i = 0; i < 5; i++) {
print('hello ${i + 1}');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment