ErrorBuilder typedef

ErrorBuilder = Widget Function(BuildContext context, Object error)

A signature for a callback which exposes an error and returns a function. This Callback can be used in cases where an API failure occurs and the widget is unable to render data.

Implementation

// TODO: Add stacktrace as a parameter in v7.0.0
typedef ErrorBuilder = Widget Function(BuildContext context, Object error);