ParamsOfWaitForCollection constructor
Implementation
ParamsOfWaitForCollection({
@required String collection,
dynamic filter,
@required String result,
int timeout,
}) {
_collection = ArgumentError.checkNotNull(
collection, 'ParamsOfWaitForCollection collection');
_filter = filter;
_result =
ArgumentError.checkNotNull(result, 'ParamsOfWaitForCollection result');
_timeout = timeout;
}