Cell constructor
Implementation
Cell({this.initialValue, this.validator}) {
this.textEditingController =
TextEditingController(text: this.initialValue ?? "");
if (this.validator == null) this.validator = Validators.exists;
if (this.onEditingCompleteCallback == null)
this.onEditingCompleteCallback = () {};
}