Variables$Query$GetOwnedObjects constructor

Variables$Query$GetOwnedObjects({
  1. required String address,
  2. String? type,
  3. int? first,
  4. String? after,
})

Implementation

factory Variables$Query$GetOwnedObjects({
  required String address,
  String? type,
  int? first,
  String? after,
}) => Variables$Query$GetOwnedObjects._({
  r'address': address,
  if (type != null) r'type': type,
  if (first != null) r'first': first,
  if (after != null) r'after': after,
});