statusBarHeight property
double
get
statusBarHeight
Implementation
double get statusBarHeight {
final topInset = adaptSafeTop;
final threshold = StatusBarConfig.currentPlatformThreshold;
return topInset > threshold ? threshold : topInset;
}