mapFromJson function Null safety
- String? _
Implementation
Map<String, dynamic>? mapFromJson(String? _) {
if (_ == null) return null;
return jsonDecode(_);
}
Map<String, dynamic>? mapFromJson(String? _) {
if (_ == null) return null;
return jsonDecode(_);
}