resolveAnimation method
Gets the remote object of the Animation.
animationId
Animation id.
Returns: Corresponding remote object.
Implementation
Future<runtime.RemoteObject> resolveAnimation(String animationId) async {
var result = await _client.send('Animation.resolveAnimation', {
'animationId': animationId,
});
return runtime.RemoteObject.fromJson(
result['remoteObject'] as Map<String, dynamic>);
}