mirror of
https://github.com/flutter/samples.git
synced 2025-11-09 14:28:51 +00:00
Updates samples for latest beta release of the Flutter SDK (#492)
* Updating for beta release * Re-adding pub get to Flutter travis script
This commit is contained in:
@@ -90,19 +90,19 @@ class _$BuiltSimpleObjectSerializer
|
||||
result.aListOfStrings.replace(serializers.deserialize(value,
|
||||
specifiedType:
|
||||
const FullType(BuiltList, const [const FullType(String)]))
|
||||
as BuiltList<dynamic>);
|
||||
as BuiltList<Object>);
|
||||
break;
|
||||
case 'aListOfInts':
|
||||
result.aListOfInts.replace(serializers.deserialize(value,
|
||||
specifiedType:
|
||||
const FullType(BuiltList, const [const FullType(int)]))
|
||||
as BuiltList<dynamic>);
|
||||
as BuiltList<Object>);
|
||||
break;
|
||||
case 'aListOfDoubles':
|
||||
result.aListOfDoubles.replace(serializers.deserialize(value,
|
||||
specifiedType:
|
||||
const FullType(BuiltList, const [const FullType(double)]))
|
||||
as BuiltList<dynamic>);
|
||||
as BuiltList<Object>);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user