getIconRotationAlignment method

Future<IconRotationAlignment?> getIconRotationAlignment()

In combination with symbol-placement, determines the rotation behavior of icons.

Implementation

Future<IconRotationAlignment?> getIconRotationAlignment() =>
    messager.getIconRotationAlignment(id).then((value) =>
        value != null ? IconRotationAlignment.values[value] : null);