transaction.dart 92 B

123456
  1. import './operation.dart';
  2. class Transaction {
  3. final List<Operation> operations = [];
  4. }