Files
flutter_thingsboard_app/lib/constants/app_constants.dart
2021-06-11 16:03:03 +03:00

8 lines
303 B
Dart

abstract class ThingsboardAppConstants {
static final thingsBoardApiEndpoint = 'http://localhost:8080';
static final thingsboardOAuth2CallbackUrlScheme = 'org.thingsboard.app.auth';
/// Not for production (only for debugging)
static final thingsboardOAuth2AppSecret = 'Your app secret here';
}