data property

CardThemeData get data

The properties used for all descendant Card widgets.

Implementation

CardThemeData get data {
  return _data ??
      CardThemeData(
        clipBehavior: _clipBehavior,
        color: _color,
        surfaceTintColor: _surfaceTintColor,
        shadowColor: _shadowColor,
        elevation: _elevation,
        margin: _margin,
        shape: _shape,
      );
}