isInteger property

bool isInteger

Implementation

bool get isInteger {
  return Validators.Required(
          next: Validators.Number(
              integerOnly: true, allowDecimal: false))!(this) ==
      null;
}