DividerTheme constructor

const DividerTheme({
  1. Key? key,
  2. required DividerThemeData data,
  3. required Widget child,
})

Creates a divider theme that controls the configurations for Divider.

Implementation

const DividerTheme({
  Key? key,
  required this.data,
  required Widget child,
}) : super(key: key, child: child);