PinIndicationWidget constructor

const PinIndicationWidget({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. bool isSimplified = false,
  5. required PinState state,
  6. PinLanguage language = PinLanguage.english,
})

Implementation

const PinIndicationWidget({
  super.key,
  this.width,
  this.height,
  this.isSimplified = false,
  required this.state,
  this.language = PinLanguage.english,
});