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:
@@ -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._();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user