PensilCommunityApp constructor

PensilCommunityApp({
  1. Key? key,
  2. required PensilBloc bloc,
  3. required Widget child,
  4. PensilThemeData? themeData,
})

Implementation

PensilCommunityApp({
  Key? key,
  required this.bloc,
  required this.child,
  PensilThemeData? themeData,
})  : _themeData = themeData ?? PensilThemeData.light(),
      super(key: key);