This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:intl/intl.dart'; | |
import 'package:light_app/data/data.dart'; | |
class BranchHelpers { | |
const BranchHelpers._(); | |
//Don't change this list order, dart is uses the same list order, as [monday]..[sunday]. | |
static const weekDaysNames = [ | |
'monday', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Object.defineProperty(exports, "__esModule", { value: true }); | |
exports.downloadVideoAndUploadToStorage = void 0; | |
const admin = require("firebase-admin"); | |
const functions = require("firebase-functions"); | |
const https = require("https"); | |
const fs = require("fs"); | |
const os = require("os"); | |
const path = require("path"); | |
admin.initializeApp(); | |
exports.downloadVideoAndUploadToStorage = functions.firestore |