1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00

Remove unneeded types (#949)

This commit is contained in:
Ahmed Ashour
2021-11-03 17:58:12 +01:00
committed by GitHub
parent 64805fe5b6
commit 29339b8334
30 changed files with 54 additions and 55 deletions

View File

@@ -11,7 +11,7 @@ import 'package:jsonexample/dart_convert/converted_simple_object.dart';
import 'package:jsonexample/json_serializable/serializable_simple_object.dart';
void main() {
const typicalObjectJson = <String, dynamic>{
const typicalObjectJson = {
'aString': 'Blah, blah, blah.',
'anInt': 1,
'aDouble': 1.0,
@@ -20,7 +20,7 @@ void main() {
'aListOfDoubles': [1.0, 2.0, 3.0]
};
const emptyListJson = <String, dynamic>{
const emptyListJson = {
'aString': 'Blah, blah, blah.',
'anInt': 1,
'aDouble': 1.0,
@@ -29,7 +29,7 @@ void main() {
'aListOfDoubles': <double>[]
};
const unexpectedPropertiesJson = <String, dynamic>{
const unexpectedPropertiesJson = {
'aString': 'Blah, blah, blah.',
'anInt': 1,
'aDouble': 1.0,