LaunchPreviewStyle constructor

const LaunchPreviewStyle({
  1. double height = 150,
  2. double imageHeight = 180,
  3. double borderRadius = 12,
  4. double elevation = 2,
  5. Color backgroundColor = Colors.white,
  6. TextStyle titleTextStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.bold),
  7. TextStyle descriptionTextStyle = const TextStyle(fontSize: 14, color: Colors.grey),
})

Creates a LaunchPreviewStyle.

Implementation

const LaunchPreviewStyle({
  this.height = 150,
  this.imageHeight = 180,
  this.borderRadius = 12,
  this.elevation = 2,
  this.backgroundColor = Colors.white,
  this.titleTextStyle =
      const TextStyle(fontSize: 16, fontWeight: FontWeight.bold),
  this.descriptionTextStyle =
      const TextStyle(fontSize: 14, color: Colors.grey),
});