toConstructorDeclarations method
Implementation
String toConstructorDeclarations() {
return where((e) => e.name != null)
.map(
(e) => e.copyWithConstructorDeclaration(),
)
.join(',\n')
.trim()
.indented();
}
String toConstructorDeclarations() {
return where((e) => e.name != null)
.map(
(e) => e.copyWithConstructorDeclaration(),
)
.join(',\n')
.trim()
.indented();
}