FileSystemLoader constructor

FileSystemLoader({
  1. List<String> paths = const <String>['templates'],
  2. bool followLinks = true,
  3. Set<String> extensions = const <String>{'html'},
  4. Encoding encoding = utf8,
})

Implementation

FileSystemLoader({
  List<String> paths = const <String>['templates'],
  this.followLinks = true,
  this.extensions = const <String>{'html'},
  this.encoding = utf8,
}) : paths = paths.map<String>(normalize).toList();