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