closeKeyboard method

dynamic closeKeyboard()

Implementation

closeKeyboard() async {
  try {
    FocusScope.of(context).unfocus();
  } catch (e) {
    Log().exception(e);
  }
}