import 'package:flutter/foundation.dart'; /// Sets the load state to true while [function] is executed. Future loadDuring( AsyncCallback function, { required ValueChanged setLoading, }) async { setLoading(true); await function(); setLoading(false); }