EvadeFutureBuilder constructor

EvadeFutureBuilder({
  1. Key? key,
  2. required Widget onSuccess,
  3. Widget onError = const SizedBox(),
  4. bool requiresNetwork = false,
})

Implementation

EvadeFutureBuilder(
    {Key? key,
    required this.onSuccess,
    this.onError = const SizedBox(),
    this.requiresNetwork = false})
    : super(key: key);