TransactionLog constructor

const TransactionLog({@required Wallet from, @required Wallet to, @required Amount amount, @required DateTime at, @required TransactionType type })

Implementation

const TransactionLog({
  @required this.from,
  @required this.to,
  @required this.amount,
  @required this.at,
  @required this.type,
});