get method

dynamic get()

Implementation

dynamic get()
{
  if (getter == null)
       return _value;
  else return getter!();
}