FilePath constructor

FilePath({
  1. required String mainPath,
  2. required String category,
  3. String? routeName,
  4. required bool isMVVM,
})

Implementation

FilePath({
  required this.mainPath,
  required this.category,
  this.routeName,
  required this.isMVVM,
});