getAnimatedStylesForNode method
Returns the styles coming from animations & transitions including the animation & transition styles coming from inheritance chain.
Implementation
Future<GetAnimatedStylesForNodeResult> getAnimatedStylesForNode(
dom.NodeId nodeId,
) async {
var result = await _client.send('CSS.getAnimatedStylesForNode', {
'nodeId': nodeId,
});
return GetAnimatedStylesForNodeResult.fromJson(result);
}