PinTheme constructor

const PinTheme({
  1. double fieldWidth = 50,
  2. double fieldHeight = 50,
  3. InputBorder? border = const OutlineInputBorder(),
  4. InputBorder? enabledBorder,
  5. InputBorder? focusedBorder,
  6. Color fieldBackgroundColor = Colors.transparent,
  7. bool hasBackground = false,
})

Implementation

const PinTheme({
  this.fieldWidth = 50,
  this.fieldHeight = 50,
  this.border = const OutlineInputBorder(),
  this.enabledBorder,
  this.focusedBorder,
  this.fieldBackgroundColor = Colors.transparent,
  this.hasBackground = false,
});