I use following RegEx to identify JCB credit card.
I found the RegEx from here https://www.regular-expressions.info/creditcard.html
input.startsWith(new RegExp(r'(?:2131|1800|35\d{3})\d{11}'))
When I validate the following card number, it does not identify it correctly
3088000000000009
Any idea how to fix this?