CodeEntryFieldStyle constructor

const CodeEntryFieldStyle({
  1. Color? boxBackgroundColor,
  2. Color? boxBorderColor,
  3. double? boxBorderWidth,
  4. double? boxCornerRadius,
  5. Color? selectionColor,
  6. TextStyle? textStyle,
})

Creates a CodeEntryFieldStyle instance.

Implementation

const CodeEntryFieldStyle({
  this.boxBackgroundColor,
  this.boxBorderColor,
  this.boxBorderWidth,
  this.boxCornerRadius,
  this.selectionColor,
  this.textStyle,
});