postValidation property

(Object Function(List<String>, num, String, bool, Options, bool, bool, [dynamic])?) postValidation

Hook to postValidate the result from isValid. Useful for validating the entry as a whole.

Implementation

_i2.Object Function(
  _i2.List<_i2.String>,
  _i2.num,
  _i2.String,
  _i2.bool,
  _i3.Options,
  _i2.bool,
  _i2.bool, [
  _i2.dynamic,
])? get postValidation => (
      _i2.List<_i2.String> p0,
      _i2.num p1,
      _i2.String p2,
      _i2.bool p3,
      _i3.Options p4,
      _i2.bool p6,
      _i2.bool p7, [
      _i2.dynamic p5,
    ]) =>
        _i4.callMethod(
          _i4.getProperty(
            this,
            'postValidation',
          ),
          r'call',
          [
            this,
            p0,
            p1,
            p2,
            p3,
            p4,
            p5,
            p6,
            p7,
          ],
        );
void postValidation=(Object value(List<String>, num, String, bool, Options, bool, bool, [dynamic])?)

Implementation

set postValidation(
    _i2.Object Function(
      _i2.List<_i2.String>,
      _i2.num,
      _i2.String,
      _i2.bool,
      _i3.Options,
      _i2.bool,
      _i2.bool, [
      _i2.dynamic,
    ])? value) {
  _i4.setProperty(
    this,
    'postValidation',
    value == null ? _i6.undefined : _i4.allowInterop(value),
  );
}