LoadInfoIcon constructor

const LoadInfoIcon({
  1. Key? key,
  2. required bool isLoading,
  3. required bool isCached,
  4. void onReload(
    1. BuildContext
    )?,
})

Implementation

const LoadInfoIcon({
  Key? key,
  required this.isLoading,
  required this.isCached,
  this.onReload,
}) : super(key: key);