InterfaceWithComment constructor

InterfaceWithComment(
  1. String type,
  2. List<String> typeArgsTypes,
  3. List<String> typeParamsNames,
  4. List<NameType> fields, {
  5. String? comment,
  6. bool isSealed = false,
  7. bool hidePublicConstructor = false,
})

Implementation

InterfaceWithComment(
  String type,
  List<String> typeArgsTypes,
  List<String> typeParamsNames,
  List<NameType> fields, {
  this.comment,
  bool isSealed = false,
  bool hidePublicConstructor = false,
}) : super(
       type,
       typeArgsTypes,
       typeParamsNames,
       fields,
       false,
       isSealed,
       hidePublicConstructor,
     );