1 // Copyright 2013 The Flutter Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 @interface FlutterPluginAppLifeCycleDelegate () 6 7 /** 8 * Check whether the selector should be handled dynamically. 9 */ 10 - (BOOL)isSelectorAddedDynamically:(SEL)selector; 11 12 /** 13 * Check whether there is at least one plugin responds to the selector. 14 */ 15 - (BOOL)hasPluginThatRespondsToSelector:(SEL)selector; 16 17 @end 18 ; 19