getConstructorArg static method
Implementation
static String getConstructorArg({
required String name,
bool isRequired = false,
String defaultValue = '',
}) {
String res = '';
if (isRequired) {
res += 'required ';
}
res += 'this.$name ${defaultValue == '' ? '' : '= $defaultValue'}';
return res;
}