FOtpItemScope constructor

const FOtpItemScope({
  1. required String? character,
  2. required bool focused,
  3. required bool start,
  4. required bool end,
  5. required Widget child,
  6. Key? key,
})

Creates an FOtpItemScope.

Implementation

const FOtpItemScope({
  required this.character,
  required this.focused,
  required this.start,
  required this.end,
  required super.child,
  super.key,
});