start method
Implementation
@override
Future<void> start() async {
isLoading = true;
Timer.periodic(speed!, (timer) {
if (!isLoading) {
timer.cancel();
} else {
stdout.write(
'\r${formatOutput(spinnerSymbols[index % spinnerSymbols.length])}');
index++;
}
});
}