myip property

dynamic myip

Implementation

get myip => _myip;
void myip=(dynamic value)

Implementation

set myip(value) {
  _myip = value;
  print(value);
  notifyListeners();
}