StorageRef.withReference constructor

StorageRef.withReference(
  1. dynamic reference
)

Implementation

StorageRef.withReference(dynamic reference) {
  if (reference is firebase_dart.Reference) {
    _ref_windows = reference;
  } else {
    _ref_original = reference;
  }
}