Marcus Duarte

Results 3 issues of Marcus Duarte

Sometimes the http request has many query params that must be analyzed by developer to debug something related of the http requests. In the Network section no has friendly way...

network page
P4
fix it friday

If variable type is DateTime use `DateTime.tryParse(map['key'])` instead of `map['key'] as DateTime` /closes #21

The plugin does not handle DateTime parser correctly ```dart class Person{ String? name; DateTime? birthday; // Constructos and other relevant code. factory Person.fromMap(Map map){ return Person( name: map['name'] as String?,...