ParamsOfQueryCollection constructor
Implementation
ParamsOfQueryCollection({
@required String collection,
dynamic filter,
@required String result,
List<OrderBy> order,
int limit,
}) {
_collection = ArgumentError.checkNotNull(
collection, 'ParamsOfQueryCollection collection');
_filter = filter;
_result =
ArgumentError.checkNotNull(result, 'ParamsOfQueryCollection result');
_order = order;
_limit = limit;
}