setViewAngle method
Set vertical angle in follow position mode.
Parameters
- IN value The view angle.
- IN animation Enable/ disable the animation. By default it is false.
Throws
- An exception if it fails.
Implementation
void setViewAngle(final double viewAngle, {final bool animated = false}) {
objectMethod(
_pointerId,
'FollowPositionPreferences',
'setViewAngle',
args: <String, Object>{'value': viewAngle, 'animated': animated},
);
}