LoadingAppearence constructor
LoadingAppearence({
- required LoadingType type,
- required int size,
- String? backgroundColor,
- String? loadingColor,
Implementation
LoadingAppearence({
required this.type,
required this.size,
this.backgroundColor,
this.loadingColor,
}) {
backgroundColor = backgroundColor ?? '#FFFFFF';
loadingColor = loadingColor ?? '#05D758';
}