Unfocuser constructor

const Unfocuser({
  1. Key? key,
  2. required Widget child,
  3. bool isEnabled = true,
})

Implementation

const Unfocuser({
  Key? key,
  required this.child,
  this.isEnabled = true,
}) : super(
        key: key,
      );