how to remove notification badge -Flutter
Try to Add Below Code In side you AppDelegate.swift
after didFinishLaunchingWithOptions
override func applicationDidEnterBackground(_ application: UIApplication){
application.applicationIconBadgeNumber = 0
}
Hope it's work for you