FireDartFirestoreGatewayStreamCache constructor

FireDartFirestoreGatewayStreamCache({
  1. void onDone(
    1. String userInfo
    )?,
  2. required String userInfo,
  3. dynamic onError(
    1. Object e
    )?,
})

Implementation

FireDartFirestoreGatewayStreamCache(
    {this.onDone, required this.userInfo, Function(Object e)? onError})
    : onError = onError ?? _handleErrorStub;