FCardContentStyle constructor

const FCardContentStyle({
  1. required TextStyle titleTextStyle,
  2. required TextStyle subtitleTextStyle,
  3. double imageSpacing = 10,
  4. double subtitleSpacing = 8,
  5. EdgeInsetsGeometry padding = const EdgeInsets.all(16),
})

Creates a FCardContentStyle.

Implementation

const FCardContentStyle({
  required this.titleTextStyle,
  required this.subtitleTextStyle,
  this.imageSpacing = 10,
  this.subtitleSpacing = 8,
  this.padding = const EdgeInsets.all(16),
});