BottomLoader constructor

const BottomLoader({
  1. Key? key,
  2. required AppTheme theme,
  3. double size = 24,
  4. EdgeInsets padding = const EdgeInsets.all(12.0),
})

Implementation

const BottomLoader({
  super.key,
  required this.theme,
  this.size = 24,
  this.padding = const EdgeInsets.all(12.0),
});