Skip to content

Instantly share code, notes, and snippets.

@RedBrogdon
Created August 1, 2018 18:25
Show Gist options
  • Save RedBrogdon/783e5927e1d92f4d5f01660d26cae328 to your computer and use it in GitHub Desktop.
Save RedBrogdon/783e5927e1d92f4d5f01660d26cae328 to your computer and use it in GitHub Desktop.
class SimpleObject {
SimpleObject({
this.aString,
this.anInt,
this.aDouble,
this.aListOfStrings,
this.aListOfInts,
this.aListOfDoubles,
});
final String aString;
final int anInt;
final double aDouble;
final List<String> aListOfStrings;
final List<int> aListOfInts;
final List<double> aListOfDoubles;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment