EstimatedAppBarContainer constructor

const EstimatedAppBarContainer({
  1. required Color backgroundColor,
  2. required Widget child,
})

Creates a widget that wraps a child with a Container that has a background color and a top margin that matches the height of the system status bar.

Implementation

const EstimatedAppBarContainer({
  required this.backgroundColor,
  required this.child,
});