bool isValidOTP([int length = 6]) { return this.length == length && RegExp(r'^\d+$').hasMatch(this); }