FCardContentStyle constructor

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

Creates a FCardContentStyle.

Implementation

const FCardContentStyle({
  required this.titleTextStyle,
  required this.subtitleTextStyle,
  this.imageSpacing = 24,
  this.titleSpacing = 2,
  this.subtitleSpacing = 6,
  this.padding = const .all(16),
});