StarTransaction constructor

StarTransaction({
  1. required String id,
  2. StarAmount? starAmount,
  3. required bool isRefund,
  4. required int date,
  5. StarTransactionType? type,
})

Implementation

StarTransaction({
  required this.id,
  this.starAmount,
  required this.isRefund,
  required this.date,
  this.type,
});