ContainerStyle constructor

const ContainerStyle({
  1. BoxDecoration? decoration,
  2. Color color = Colors.transparent,
  3. EdgeInsets padding = const EdgeInsets.all(0),
  4. EdgeInsets gridViewPadding = const EdgeInsets.all(8.0),
})

Implementation

const ContainerStyle({
  this.decoration,
  this.color = Colors.transparent,
  this.padding = const EdgeInsets.all(0),
  this.gridViewPadding = const EdgeInsets.all(8.0),
});