Fix incorrect header for #FlBasicMessageChannel::respond (#18365)

diff --git a/shell/platform/linux/public/flutter_linux/fl_basic_message_channel.h b/shell/platform/linux/public/flutter_linux/fl_basic_message_channel.h
index a26332b..5bdd5bb 100644
--- a/shell/platform/linux/public/flutter_linux/fl_basic_message_channel.h
+++ b/shell/platform/linux/public/flutter_linux/fl_basic_message_channel.h
@@ -87,11 +87,12 @@
     gpointer user_data);
 
 /**
- * fl_basic_message_channel_send_response:
+ * fl_basic_message_channel_respond:
  * @channel: a #FlBasicMessageChannel
  * @response_handle: (transfer full): handle that was provided in a
  * #FlBasicMessageChannelMessageHandler
- * @response: (allow-none): response to send or %NULL for an empty response
+ * @message: (allow-none): message response to send or %NULL for an empty
+ * response
  * @error: (allow-none): #GError location to store the error occurring, or %NULL
  * to ignore
  *
@@ -99,10 +100,10 @@
  *
  * Returns: %TRUE on success.
  */
-gboolean fl_basic_message_channel_send_response(
+gboolean fl_basic_message_channel_respond(
     FlBasicMessageChannel* channel,
     FlBasicMessageChannelResponseHandle* response_handle,
-    FlValue* response,
+    FlValue* message,
     GError** error);
 
 /**