ListCollectionsReply constructor

ListCollectionsReply({
  1. Iterable<GetCollectionInfoReply>? collections,
})

Implementation

factory ListCollectionsReply({
  $core.Iterable<GetCollectionInfoReply>? collections,
}) {
  final _result = create();
  if (collections != null) {
    _result.collections.addAll(collections);
  }
  return _result;
}