PluginItemCard constructor

const PluginItemCard({
  1. required String title,
  2. String? describe,
  3. Widget? icon,
  4. EdgeInsetsGeometry? margin,
  5. EdgeInsetsGeometry? padding = const EdgeInsets.fromLTRB(9, 6, 6, 11),
  6. Key? key,
})

Implementation

const PluginItemCard(
    {required this.title,
    this.describe,
    this.icon,
    this.margin,
    this.padding = const EdgeInsets.fromLTRB(9, 6, 6, 11),
    Key? key})
    : super(key: key);