PrimaryContentTheme constructor

const PrimaryContentTheme({
  1. Key? key,
  2. Color? errorColor,
  3. required Widget child,
})

Implementation

const PrimaryContentTheme({
  super.key,
  this.errorColor,
  required this.child,
});