FluentCardBaseState constructor

const FluentCardBaseState({
  1. required bool enabled,
  2. required bool interactive,
  3. required bool selected,
  4. required FluentCardOrientation orientation,
  5. Widget? preview,
  6. Widget? header,
  7. Widget? body,
  8. Widget? footer,
})

Creates a base state.

Implementation

const FluentCardBaseState({
  required this.enabled,
  required this.interactive,
  required this.selected,
  required this.orientation,
  this.preview,
  this.header,
  this.body,
  this.footer,
});