Loader.sm constructor

const Loader.sm({
  1. Key? key,
  2. Color? color,
})

Creates a small loader with fixed size and optional color.

Implementation

const Loader.sm({
  super.key,
  this.color,
})  : width = 16,
      height = 16,
      size = 16;