IDSLoader constructor

IDSLoader(
  1. BuildContext context, {
  2. Color loaderColor = Colors.white,
})

Creates an instance of IDSLoader with the specified BuildContext and optional loader color.

context is used to find the widget tree where the loader should be displayed. loaderColor is the color of the loader, defaulting to white.

Implementation

IDSLoader(
  BuildContext context, {
  Color loaderColor = Colors.white,
}) : _appLoader = IDSAppLoader(context, loaderColor: loaderColor);