13 lines
262 B
Swift
13 lines
262 B
Swift
//
|
|
// MethodNames.swift
|
|
// flutter_cast_framework
|
|
//
|
|
// Created by Gianluca Paradiso on 09/11/2019.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum MethodNames : String {
|
|
case onCastStateChanged = "CastContext.onCastStateChanged"
|
|
case showCastDialog = "showCastDialog"
|
|
}
|