1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 22:09:06 +00:00

Adding tests, tweaking built_value code. (#5)

This commit is contained in:
Andrew Brogdon
2018-07-20 15:18:23 -07:00
committed by GitHub
parent 166c797671
commit 357d172647
12 changed files with 907 additions and 89 deletions

View File

@@ -23,14 +23,19 @@ abstract class BuiltComplexObject
@nullable
double get aDouble;
@nullable
BuiltSimpleObject get anObject;
@nullable
BuiltList<String> get aListOfStrings;
@nullable
BuiltList<int> get aListOfInts;
@nullable
BuiltList<double> get aListOfDoubles;
@nullable
BuiltList<BuiltSimpleObject> get aListOfObjects;
BuiltComplexObject._();