CurrencyModel constructor

const CurrencyModel({
  1. int id = 0,
  2. required String name,
  3. bool status = true,
})

Implementation

const CurrencyModel({
  super.id = 0,
  required super.name,
  super.status = true,
});