loadingBuilder property

(Widget Function(BuildContext, FastCachedProgressData)?) loadingBuilder
final

loadingBuilder is the builder which can show the download progress of an image. Usage: loadingBuilder(context, FastCachedProgressData progressData){return Text('${progress.downloadedBytes ~/ 1024} / ${progress.totalBytes! ~/ 1024} kb')}

Implementation

///Usage: loadingBuilder(context, FastCachedProgressData progressData){return  Text('${progress.downloadedBytes ~/ 1024} / ${progress.totalBytes! ~/ 1024} kb')}
final Widget Function(BuildContext, FastCachedProgressData)? loadingBuilder;