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