flutter_cast_framework_modern/lib/MethodNames.dart
gianlucaparadise 9e10c120bc SessionManager state implementation;
Little methods refactor;
2019-11-11 22:52:04 +01:00

14 lines
No EOL
791 B
Dart

class PlatformMethodNames {
static const onCastStateChanged = "CastContext.onCastStateChanged";
static const showCastDialog = "showCastDialog";
static const onSessionStarting = "SessionManager.onSessionStarting";
static const onSessionStarted = "SessionManager.onSessionStarted";
static const onSessionStartFailed = "SessionManager.onSessionStartFailed";
static const onSessionEnding = "SessionManager.onSessionEnding";
static const onSessionEnded = "SessionManager.onSessionEnded";
static const onSessionResuming = "SessionManager.onSessionResuming";
static const onSessionResumed = "SessionManager.onSessionResumed";
static const onSessionResumeFailed = "SessionManager.onSessionResumeFailed";
static const onSessionSuspended = "SessionManager.onSessionSuspended";
}