SfDataGridTheme constructor

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

Applies the given theme data to child.

Implementation

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