AltchaCodeChallenge constructor

AltchaCodeChallenge({
  1. required String image,
  2. String? audio,
  3. int? length,
})

Implementation

AltchaCodeChallenge({
  required this.image,
  this.audio,
  this.length,
});