LoadingTemplate constructor
const
LoadingTemplate({})
Implementation
const LoadingTemplate({
Key? key,
required this.icon,
required this.loading,
this.customIconBuilder,
this.progressIndicatorColor,
this.progressIndicatorStrokeWidth = 5.0,
}) : assert(
progressIndicatorColor == null || customIconBuilder == null,
"When using 'customIconBuilder', you shouldn't define progressIndicator properties as they won't have any effect",
),
super(key: key);