todo 2.0.1 todo: ^2.0.1 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) {
TODO("Handle empty list of numbers.");
}
TODO("Find the maximum.");
}