TransactionsModel.fromJson constructor
Implementation
factory TransactionsModel.fromJson(Map<String, dynamic> json) =>
TransactionsModel(
status: json["status"],
message: json["message"],
total: json["total"],
amountTotalBs: json["amount_total_bs"]!.toDouble(),
statusDay: json["status_day"],
ctransactions: Ctransactions.fromJson(json["ctransactions"]),
);