ParamsOfSubscribeCollection constructor

ParamsOfSubscribeCollection(
  1. {@required String collection,
  2. dynamic filter,
  3. @required String result}
)

Implementation

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