Store.fromJson constructor Null safety
Implementation
factory Store.fromJson(Map<String, dynamic> json) => Store(
id: json["id"],
name: json["name"],
latitude: json["latitude"],
longitude: json["longitude"],
description: json["description"],
mobile: json["mobile"],
telephone: json["telephone"],
);