FlutterCallbackInformation
Objective-C
@interface FlutterCallbackInformation : NSObject
Swift
class FlutterCallbackInformation : NSObject
An object containing the result of FlutterCallbackCache
‘s lookupCallbackInformation
method.
-
The name of the callback.
Declaration
Objective-C
@property (copy) NSString *callbackName;
Swift
var callbackName: String! { get set }
-
The class name of the callback.
Declaration
Objective-C
@property (copy) NSString *callbackClassName;
Swift
var callbackClassName: String! { get set }
-
The library path of the callback.
Declaration
Objective-C
@property (copy) NSString *callbackLibraryPath;
Swift
var callbackLibraryPath: String! { get set }