OptionLoading constructor

const OptionLoading({
  1. Key? key,
  2. double size = 24.0,
  3. Color? color,
})

Creates an OptionLoading widget.

  • size: The size of the loading indicator.
  • color: The color of the loading indicator (uses theme primary color if null).

Implementation

const OptionLoading({
  super.key,
  this.size = 24.0,
  this.color,
});