isCorrectVariableNullable method
Implementation
bool isCorrectVariableNullable() {
final regExp = RegExp(r'.*\?.*');
return regExp.hasMatch(this);
}
bool isCorrectVariableNullable() {
final regExp = RegExp(r'.*\?.*');
return regExp.hasMatch(this);
}