GenericNetworkErrorWidget constructor

GenericNetworkErrorWidget({
  1. @required Function? checkingFunction,
  2. Key? key,
})

Implementation

GenericNetworkErrorWidget({@required this.checkingFunction, Key? key})
    : assert(checkingFunction != null,
          'A non-null function must be provided to the GenericNetworkErrorView widget '),
      super(key: key);