FirebaseQueryResponse constructor

FirebaseQueryResponse({
  1. String? path,
  2. Int64? count,
})

Implementation

factory FirebaseQueryResponse({
  $core.String? path,
  $fixnum.Int64? count,
}) {
  final _result = create();
  if (path != null) {
    _result.path = path;
  }
  if (count != null) {
    _result.count = count;
  }
  return _result;
}