isValidForm method
Implementation
bool isValidForm() {
return nameErrorNotifier.value == null &&
widthErrorNotifier.value == null &&
heightErrorNotifier.value == null &&
nameController.text.isNotEmpty &&
widthController.text.isNotEmpty &&
heightController.text.isNotEmpty;
}