get static method
Implementation
static Widget get( ) {
HexColor c1 = DSColor.ds_progress_fade_1;
HexColor c2 = DSColor.ds_progress_fade_2 ;
final spinkit = SpinKitFadingCircle(
itemBuilder: (BuildContext context, int index) {
return DecoratedBox(
decoration: BoxDecoration(
color: index.isEven ?c1 : c2,
),
);
},
);
return spinkit;
}