OutlinedContainerWrapper constructor

const OutlinedContainerWrapper({
  1. EdgeInsets? margin,
  2. EdgeInsets padding = const EdgeInsets.all(8),
  3. Color? backgroundColor,
  4. Color? borderColor,
  5. double borderRadius = 8,
  6. BoxShadow? boxShadow,
  7. double borderWidth = 1,
})

Implementation

const OutlinedContainerWrapper({
  this.margin,
  this.padding = const EdgeInsets.all(8),
  this.backgroundColor,
  this.borderColor,
  this.borderRadius = 8,
  this.boxShadow,
  this.borderWidth = 1,
});