AccountCurrencyModel constructor

AccountCurrencyModel({
  1. int branchId = 0,
  2. required int accountId,
  3. required int currencyId,
  4. required double price,
  5. bool status = true,
})

Implementation

AccountCurrencyModel({
  this.branchId = 0,
  required this.accountId,
  required this.currencyId,
  required this.price,
  this.status = true,
})  : createAt = DateTime.now(),
      sessionId = 0,
      userId = 0;