It means that your are using ! on a null value
!
example:
bool? b; try { print(b!); } catch (e) { print(e);// this will print the error you got }
the use of ! on a nullable value, means that you are sure that the value is not null