mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-08-23 05:56:20 +08:00
16 lines
276 B
Dart
16 lines
276 B
Dart
import 'package:flutter/foundation.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,
|
|
});
|
|
}
|