iptext property

dynamic get iptext

Implementation

get iptext => _iptext;
set iptext (dynamic value)

Implementation

set iptext(value) {
  print("---------------------->" + value);
  _iptext = value;
  // textcontroller.text = value;
  // print("---------------------->"+textcontroller.text);
  notifyListeners();
}