reference method

  1. @protected
Reference reference(
  1. String path
)

You can get Reference of Firebase Storage by passing path.

pathを渡すことでFirebase StorageのReferenceを取得できます。

Implementation

@protected
Reference reference(String path) {
  return storage.ref().child(path);
}