getAppTheme method

Future<ThemeData> getAppTheme()

Implementation

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

  return themingService.getAppTheme();
}