Flutter Custom Keyboard ('Fake' soft keyboard) Flutter Custom Keyboard ('Fake' soft keyboard) dart dart

Flutter Custom Keyboard ('Fake' soft keyboard)


bottomSheetController?.close(); is nullable. Since the line causes the error, you can add a null-check to prevent this issue.

else {  if(bottomSheetController != null)      bottomSheetController!.close();}