FCard constructor
FCard({})
Creates a FCard with a title, 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, child: child);