Module constructor

Module(
  1. InputFile inputFile, {
  2. String name = '',
  3. List<Method> methods = const [],
  4. List<String> codeComments = const <String>[],
})

Implementation

Module(
  this.inputFile, {
  this.name = '',
  this.methods = const [],
  this.codeComments = const <String>[],
});