setNotificationIcon static method

void setNotificationIcon(
  1. String resourceName
)

Implementation

static void setNotificationIcon(String resourceName) {
  // Android only
  if (!kIsWeb && Platform.isAndroid) {
    // Invoke native method
    _channel.invokeMethod('setNotificationIcon', <dynamic>[resourceName]);
  }
}