NomoDialogThemeData constructor

const NomoDialogThemeData({
  1. Color backgroundColor = Colors.white,
  2. double elevation = 1.0,
  3. Widget contentSpacing = const SizedBox(height: 12),
  4. double widthRatio = 0.75,
  5. EdgeInsetsGeometry margin = EdgeInsets.zero,
  6. EdgeInsetsGeometry padding = const EdgeInsets.all(12),
  7. BorderRadiusGeometry borderRadius = const BorderRadius.all(Radius.circular(12)),
})

Implementation

const NomoDialogThemeData({
  this.backgroundColor = Colors.white,
  this.elevation = 1.0,
  this.contentSpacing = const SizedBox(height: 12),
  this.widthRatio = 0.75,
  this.margin = EdgeInsets.zero,
  this.padding = const EdgeInsets.all(12),
  this.borderRadius = const BorderRadius.all(Radius.circular(12)),
});