TransactionsModel constructor

TransactionsModel(
  1. {required bool status,
  2. required String message,
  3. required int total,
  4. required double amountTotalBs,
  5. String? statusDay,
  6. required Ctransactions ctransactions}
)

Implementation

TransactionsModel({
  required this.status,
  required this.message,
  required this.total,
  required this.amountTotalBs,
  this.statusDay,
  required this.ctransactions,
});