FxFutureBuilder constructor

const FxFutureBuilder({
  1. Key? key,
  2. required Future fetchFun(),
  3. required Builder content,
  4. bool retry = true,
  5. Widget? error,
  6. Widget? loading,
})

Implementation

const FxFutureBuilder({
  Key? key,
  required this.fetchFun,
  required this.content,
  this.retry = true,
  this.error,
  this.loading,
}) : super(key: key);