StoreModel constructor

const StoreModel({
  1. int id = 0,
  2. required String name,
  3. bool status = true,
  4. String? description,
  5. required int branchId,
})

Implementation

const StoreModel(
    {super.id = 0,
    required super.name,
    super.status = true,
    this.description,
    required this.branchId});