GridHeaderTheme.fromContext constructor

GridHeaderTheme.fromContext(
  1. BuildContext context
)

Implementation

factory GridHeaderTheme.fromContext(BuildContext context) {
  final theme = Theme.of(context);
  return GridHeaderTheme(
      backgroundColor: theme.primaryColorDark, color: theme.primaryColor);
}