AccountCurrencyModel.fromMap constructor

AccountCurrencyModel.fromMap(
  1. Map<String, dynamic> map
)

Implementation

AccountCurrencyModel.fromMap(super.map)
    : branchId = map.getInt(branchIdTag)!,
      accountId = map.getInt(accountIdTag)!,
      currencyId = map.getInt(currencyIdTag)!,
      price = map.getDouble(priceTag)!,
      status = map.getBool(statusTag)!,
      createAt = map.getDateTime(createAtTag)!,
      sessionId = map.getInt(sessionIdTag)!,
      userId = map.getInt(userIdTag)!,
      super.fromMap();