onlyTextAllow property
Regular expression to allow only text (alphabets a-z, A-Z).
Implementation
static var onlyTextAllow = RegExp(r'^[a-zA-Z]+$');
Regular expression to allow only text (alphabets a-z, A-Z).
static var onlyTextAllow = RegExp(r'^[a-zA-Z]+$');