1
String
String - Validation & Integrity
Essential integrity checks for common formats: email structure, URL validity, custom password complexity, and unexpired JWT structure.
Was this page helpful?
⌘I
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
🚀 Flutter_Extend Version 0.3.0 is now live! See our changelog for details.
Essential integrity checks for common formats: email structure, URL validity, custom password complexity, and unexpired JWT structure.
Show Parameters
// Requires 8+ chars, 1+ uppercase, 1+ number, 1+ special char
print('P@sswOrd1'.isPasswordValid()); // true
exp (expiry time) field.final validToken = 'header.payload.signature';
print(validToken.isValidJWT()); // true (if not expired)
user@domain.tld).print('test@example.com'.isEmailValid()); // true
print('test@example'.isEmailValid()); // false
print('[https://www.google.com](https://www.google.com)'.isValidURL()); // true
print('www.example'.isValidURL()); // false
Was this page helpful?
