PictureVerificationCode constructor

const PictureVerificationCode({
  1. required String code,
  2. Color backgroundColor = Colors.white,
  3. int dotCount = 30,
  4. double width = 120,
  5. double height = 40,
})

Implementation

const PictureVerificationCode(
    {
      required this.code,
      this.backgroundColor = Colors.white,
      this.dotCount = 30,
      this.width = 120,
      this.height = 40});