EaseCreditCard constructor

const EaseCreditCard({
  1. Key? key,
  2. String name = " name",
  3. String number = "00000000000",
  4. String cvv = "000",
  5. String month = "12",
  6. String year = "2021",
})

Implementation

const EaseCreditCard(
    {Key? key,
    this.name = " name",
    this.number = "00000000000",
    this.cvv = "000",
    this.month = "12",
    this.year = "2021"})
    : super(key: key);