getAppTheme method
Implementation
Future<ThemeData> getAppTheme() async {
if (!isReady) {
throw PlatformException(
code: 'THEME-NOT-READY',
message: 'Theming service is not initialized',
);
}
return themingService.getAppTheme();
}