inCard method
Card
inCard({
- Key? key,
- Color? color,
- Color? shadowColor,
- Color? surfaceTintColor,
- double? elevation,
- ShapeBorder? shape,
- bool borderOnForeground = true,
- EdgeInsetsGeometry? margin,
- Clip? clip,
- bool semanticContainer = true,
see Card
Implementation
Card inCard({
Key? key,
Color? color,
Color? shadowColor,
Color? surfaceTintColor,
double? elevation,
ShapeBorder? shape,
bool borderOnForeground = true,
EdgeInsetsGeometry? margin,
Clip? clip,
bool semanticContainer = true,
}) =>
Card(
key: key,
color: color,
shadowColor: shadowColor,
surfaceTintColor: surfaceTintColor,
elevation: elevation,
shape: shape,
borderOnForeground: borderOnForeground,
margin: margin,
clipBehavior: clip,
child: this,
);