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