This snippet compile successfully but fail in runtime
Map<String, dynamic> queryParameters = {"id": 3};
Map<String, String> stringQueryParameters = Map<String, String>.from(queryParameters);
Uncaught Error: TypeError: 3: type 'int' is not a subtype of type 'String'
What's the proper way to convert from Map<String, dynamic> to Map<String, String> ?