CustomFutureBuilder constructor

const CustomFutureBuilder({
  1. Key? key,
  2. Widget? ifError,
  3. Widget? ifLoad,
  4. Widget? ifSuccess,
  5. required Future futureFunction,
})

Implementation

const CustomFutureBuilder({
  super.key,
  this.ifError,
  this.ifLoad,
  this.ifSuccess,
  required this.futureFunction,
});