ProductFeaturesItem.fromJson constructor
ProductFeaturesItem.fromJson(
- Object? json
Implementation
factory ProductFeaturesItem.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return ProductFeaturesItem(name: (map['name'] as String));
}