Open
Description
hello im trying use workmanager in a flutter app that have the AppDelegate in objective-c and the interface of this plugin only have this:
#import <Flutter/Flutter.h>
@interface WorkmanagerPlugin : NSObject<FlutterPlugin>
/**
* Register a custom task identifier to be scheduled/executed later on.
* @author Tuyen Vu
*
* @param taskIdentifier The identifier of the custom task.
*/
+ (void)registerTaskWithIdentifier:(NSString *) taskIdentifier;
@end
Activity