isValid property

bool get isValid

Implementation

bool get isValid {
  return number.isNotEmpty &&
         cvv.isNotEmpty &&
         expiryMonth.isNotEmpty &&
         expiryYear.isNotEmpty &&
         int.tryParse(expiryMonth) != null &&
         int.tryParse(expiryYear) != null;
}