FCardContentStyle constructor

const FCardContentStyle({
  1. required TextStyle titleTextStyle,
  2. required TextStyle subtitleTextStyle,
  3. EdgeInsets padding = const EdgeInsets.all(16),
})

Creates a FCardContentStyle.

Implementation

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