Flutter source files contains many times code similar to this:
 @override
  double computeMinIntrinsicWidth(double height) {
    if (child != null)
      return child!.getMinIntrinsicWidth(height);
    return 0.0;
  }
Please explain "!." I can't find it on list of dart operators.