isAlphanumeric property

bool get isAlphanumeric

Implementation

bool get isAlphanumeric => RegExp(
      r"^[a-zA-Z0-9]+$",
    ).hasMatch(this);