CodeView constructor

CodeView({
  1. String? code,
  2. int length = 6,
  3. TextStyle? codeTextStyle,
  4. bool obscurePin = true,
})

Implementation

CodeView({
  this.code,
  this.length = 6,
  this.codeTextStyle,
  this.obscurePin = true,
});