15 lines
332 B
Dart
15 lines
332 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class TransactionRecord {
|
|
final String categoryName;
|
|
final double amount;
|
|
final IconData icon;
|
|
final Color color;
|
|
final DateTime date;
|
|
final String merchant;
|
|
|
|
TransactionRecord(this.categoryName, this.amount, this.icon, this.color, this.date, this.merchant);
|
|
|
|
get id => 1;
|
|
}
|