SplashFactory.loader constructor

SplashFactory.loader()

Implementation

factory SplashFactory.loader() {
  return SplashFactory((c) => Material(
      color: palette.background,
      child: Center(
        child: CircularProgressIndicator(
          backgroundColor: palette.accent,
          strokeWidth: 2,
        ),
      )));
}