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