WorkSpaceCard constructor

const WorkSpaceCard({
  1. Key? key,
  2. required String title,
  3. required List<Widget> children,
  4. int crossCount = 4,
  5. double mainSpacing = 16,
  6. double crossSpacing = 16,
  7. double ratio = 0.88,
  8. EdgeInsetsGeometry padding = const EdgeInsets.all(16),
})

Implementation

const WorkSpaceCard(
    {Key? key, required this.title, required this.children, this.crossCount = 4, this.mainSpacing = 16, this.crossSpacing = 16, this.ratio = 0.88, this.padding = const EdgeInsets.all(16)})
    : super(key: key);