bottomPadding property

double bottomPadding

The padding offset from the bottom.

Implementation

double get bottomPadding {
  if (_context == null) throw NoContextException();
  try {
    _mediaQuery = MediaQuery.maybeOf(_context!);
    if (_mediaQuery == null) throw NoContextException();
    return _mediaQuery!.padding.bottom;
  } catch (e) {
    throw NoContextException();
  }
}