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