LoadingAppearence constructor

LoadingAppearence({
  1. required LoadingType type,
  2. required int size,
  3. String? backgroundColor,
  4. String? loadingColor,
})

Implementation

LoadingAppearence({
  required this.type,
  required this.size,
  this.backgroundColor,
  this.loadingColor,
}) {
  backgroundColor = backgroundColor ?? '#FFFFFF';
  loadingColor = loadingColor ?? '#05D758';
}