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

Landing beta changes in master for the new stable release (#747)

This commit is contained in:
Andrew Brogdon
2021-03-03 11:44:35 -08:00
committed by GitHub
parent 6c81510d6e
commit 8c1cd0b049
101 changed files with 1006 additions and 1040 deletions

View File

@@ -14,29 +14,21 @@ abstract class BuiltComplexObject
static Serializer<BuiltComplexObject> get serializer =>
_$builtComplexObjectSerializer;
@nullable
String get aString;
String? get aString;
@nullable
int get anInt;
int? get anInt;
@nullable
double get aDouble;
double? get aDouble;
@nullable
BuiltSimpleObject get anObject;
BuiltSimpleObject? get anObject;
@nullable
BuiltList<String> get aListOfStrings;
BuiltList<String>? get aListOfStrings;
@nullable
BuiltList<int> get aListOfInts;
BuiltList<int>? get aListOfInts;
@nullable
BuiltList<double> get aListOfDoubles;
BuiltList<double>? get aListOfDoubles;
@nullable
BuiltList<BuiltSimpleObject> get aListOfObjects;
BuiltList<BuiltSimpleObject>? get aListOfObjects;
BuiltComplexObject._();