notchHeight property

double get notchHeight

Implementation

double get notchHeight {
  final topInset = adaptSafeTop;
  final threshold = StatusBarConfig.currentPlatformThreshold;
  return topInset > threshold ? topInset - threshold : 0;
}