TabbyDto constructor

TabbyDto({
  1. required String transactionId,
  2. num amount = 0,
  3. required TabbyCredential credential,
})

Implementation

TabbyDto({
  required this.transactionId,
  this.amount = 0,
  required this.credential,
});