@@ -19,37 +19,37 @@ abstract class StockClosingInput with _$StockClosingInput {
1919 String ? description,
2020
2121 /// The [totalVolume20] parameter is the totalVolume20 of the stock closing input.
22- double ? totalVolume20,
22+ @Default ( 0.0 ) double totalVolume20,
2323
2424 /// The [volume20Difference] parameter is the volume20Difference of the stock closing input.
25- double ? volume20Difference,
25+ @Default ( 0.0 ) double volume20Difference,
2626
2727 /// The [accountingVolumeDifference] parameter is the accountingVolumeDifference of the stock closing input.
28- double ? accountingVolumeDifference,
28+ @Default ( 0.0 ) double accountingVolumeDifference,
2929
3030 /// The [openingBalance20] parameter is the openingBalance20 of the stock closing input.
31- double ? openingBalance20,
31+ @Default ( 0.0 ) double openingBalance20,
3232
3333 /// The [totalEntries20] parameter is the totalEntries20 of the stock closing input.
34- double ? totalEntries20,
34+ @Default ( 0.0 ) double totalEntries20,
3535
3636 /// The [totalWithdrawals20] parameter is the totalWithdrawals20 of the stock closing input.
37- double ? totalWithdrawals20,
37+ @Default ( 0.0 ) double totalWithdrawals20,
3838
3939 /// The [closingBalance20] parameter is the closingBalance20 of the stock closing input.
40- double ? closingBalance20,
40+ @Default ( 0.0 ) double closingBalance20,
4141
4242 /// The [openingAccountingBalance] parameter is the openingAccountingBalance of the stock closing input.
43- double ? openingAccountingBalance,
43+ @Default ( 0.0 ) double openingAccountingBalance,
4444
4545 /// The [totalAccountingEntries] parameter is the totalAccountingEntries of the stock closing input.
46- double ? totalAccountingEntries,
46+ @Default ( 0.0 ) double totalAccountingEntries,
4747
4848 /// The [totalAccountingWithdrawals] parameter is the totalAccountingWithdrawals of the stock closing input.
49- double ? totalAccountingWithdrawals,
49+ @Default ( 0.0 ) double totalAccountingWithdrawals,
5050
5151 /// The [closingAccountingBalance] parameter is the closingAccountingBalance of the stock closing input.
52- double ? closingAccountingBalance,
52+ @Default ( 0.0 ) double closingAccountingBalance,
5353
5454 /// The [closingDetails] parameter is the closingDetails of the stock closing input.
5555 @Default ([]) List <StockClosingTankInput > closingDetails,
0 commit comments