Unfocus constructor

const Unfocus({
  1. Key? key,
  2. required Widget child,
})

Wrap around child to take away focus from from input field of a child, when user taps outside of an input field

Implementation

const Unfocus({Key? key, required this.child}) : super(key: key);