SfMapsTheme constructor
const
SfMapsTheme({
- Key? key,
- required SfMapsThemeData data,
- required Widget child,
Applies the given theme data to child.
The data and child arguments must not be null.
Implementation
const SfMapsTheme({Key? key, required this.data, required this.child})
: super(key: key, child: child);