UIAdjust constructor

const UIAdjust({
  1. List<Widget>? u,
  2. Color? backgroundColor,
  3. double? sheetCornerRadius,
  4. Color? merchantHeaderColor,
  5. double? merchantHeaderElevation,
  6. TextStyle? merchantNameTextStyle,
  7. TextStyle? merchantInfoTextStyle,
  8. TextStyle? summaryTitleTextStyle,
  9. TextStyle? summaryItemTextStyle,
  10. Color? buttonBackgroundColor,
  11. Color? buttonForegroundColor,
  12. TextStyle? buttonTextStyle,
  13. EdgeInsets? contentPadding,
})

Optional configuration and an optional u list of widgets.

Implementation

const UIAdjust({
  List<Widget>? u,
  this.backgroundColor,
  this.sheetCornerRadius,
  this.merchantHeaderColor,
  this.merchantHeaderElevation,
  this.merchantNameTextStyle,
  this.merchantInfoTextStyle,
  this.summaryTitleTextStyle,
  this.summaryItemTextStyle,
  this.buttonBackgroundColor,
  this.buttonForegroundColor,
  this.buttonTextStyle,
  this.contentPadding,
}) : _u = u;