ComTheme constructor

const ComTheme({
  1. required ComShapes shapes,
  2. required ComSpacing spacing,
  3. required Color? success,
  4. required Color? error,
  5. required Color? warning,
  6. required Color? link,
})

Implementation

const ComTheme({
  required this.shapes,
  required this.spacing,
  required this.success,
  required this.error,
  required this.warning,
  required this.link,
});