FCard constructor
FCard({})
Creates a FCard with a tile, subtitle, and child
.
The card's layout is as follows:
|---------------------------|
| [image] |
| |
| [title] |
| [subtitle] |
| |
| [child] |
|---------------------------|
Implementation
FCard({
Widget? image,
Widget? title,
Widget? subtitle,
Widget? child,
this.style,
super.key,
}) : child = Content(
image: image,
title: title,
subtitle: subtitle,
style: style?.contentStyle,
child: child,
);