static String validateOrderID(String value) { if (value.length < 3) { return 'Order ID must be more than 2 charater'; } else { return ''; } }