RemoteHooksConfig constructor

RemoteHooksConfig({
  1. String? gitUrl,
  2. List<String> filePaths = const [],
  3. required FileHelper fileHelper,
})

Implementation

RemoteHooksConfig({
  this.gitUrl,
  List<String> filePaths = const [],
  required this.fileHelper,
}) {
  this.filePaths.addAll(filePaths);
}