Feature.fromJson constructor Null safety
Implementation
factory Feature.fromJson(Map<String, dynamic> json) => Feature(
name: json["name"],
value: json["value"],
imageUrl: json["imageURL"],
);
factory Feature.fromJson(Map<String, dynamic> json) => Feature(
name: json["name"],
value: json["value"],
imageUrl: json["imageURL"],
);