animationEnabled method

Future<bool> animationEnabled()

Get whether layout animation is enabled.

Implementation

Future<bool> animationEnabled() async {
  final config = await _getConfig();
  return config.rendering.animationEnabled;
}