You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
233 B
Dart

class Transaction {
final String id;
final String title;
final double amount;
final DateTime date;
Transaction(
{required this.id,
required this.title,
required this.amount,
required this.date});
}