todo 1.0.0 todo: ^1.0.0 copied to clipboard
🛠 Offers a TODO() method to indicate that code has not been implemented yet.
import 'package:todo/todo.dart';
int maximumOf(List<int> numbers) {
if (numbers.isEmpty) {
return TODO("Handle empty list of numbers.");
}
TODO("Implement finding the maximum.");
}