const
Project({ - int? id,
- required String name,
- String? reference,
- String? client,
- String? ownerPhone,
- String? ownerEmail,
- required DateTime createdAt,
- required DateTime updatedAt,
- ElectricalNode? root,
- String? electricalStandardId,
- BudgetConfig? budgetConfig,
- String? supplyVoltage,
- String? installationUsage,
- double? expectedPower,
- double? powerFactor,
- bool? requiresTechProject,
- bool? isNewLink,
})
Implementation
const Project({
this.id,
required this.name,
this.reference,
this.client,
this.ownerPhone,
this.ownerEmail,
required this.createdAt,
required this.updatedAt,
this.root,
this.electricalStandardId,
this.budgetConfig,
this.supplyVoltage,
this.installationUsage,
this.expectedPower,
this.powerFactor,
this.requiresTechProject,
this.isNewLink,
});