hosting property

String hosting
getter/setter pair

Implementation

static String hosting = """
As described at https://medium.com/flutter/must-try-use-firebase-to-host-your-flutter-app-on-the-web-852ee533a469
Basically:
- cd /src/eliud/flutter_app
- firebase logout
- firebase login
- firebase init
- select Hosting (space and enter)
- use existing project
- enter
- what do you want to use as your public directory? build/web
- configure as single-page app? y
- overwrite? n
- optionally: flutter pub get
- flutter build web
- firebase deploy
""";