input property

String get input

This will return the value irrespective of validity

Implementation

String get input => value.fold(
      (l) {
        return l.failedValue;
      },
      (r) => r.toString(),
    );