FileModel constructor

FileModel({
  1. required String templatePath,
  2. required String destinationPath,
  3. Map<String, String> parameters = const {},
})

Implementation

FileModel(
    {required this.templatePath,
    required this.destinationPath,
    this.parameters = const {}});