Files
flutter_thingsboard_app/lib/constants/app_constants.dart
2022-11-10 14:46:03 -06:00

8 lines
309 B
Dart

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