setAppBarTitle method

Future<bool> setAppBarTitle(
  1. String title
)

Set the app bar title dynamically.

This method allows you to change the app bar title at runtime.

Parameters:

  • title - The new title for the app bar

Returns true if the title was set successfully, false otherwise.

Implementation

Future<bool> setAppBarTitle(String title) {
  throw UnimplementedError('setAppBarTitle() has not been implemented.');
}