setTitle abstract method
Method is used to set the title of the map object.
title The title to display on the location view.
Returns true if the operation is successful, false otherwise.
Example:
// Set title
bool titleSuccess = _circleMapObject!.setTitle("Circle Object");
print("Set circle title to 'Circle Object': $titleSuccess");
Implementation
bool setTitle(String title);