From 54f31d502be75891c59ab5b4decf8f74138314be Mon Sep 17 00:00:00 2001 From: "Reza Haidari .A" Date: Wed, 20 Jul 2022 04:12:03 +0430 Subject: [PATCH] fix The method 'reset' isn't defined https://github.com/rive-app/rive-flutter/issues/165 --- lib/src/rive_core/rive_animation_controller.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/src/rive_core/rive_animation_controller.dart b/lib/src/rive_core/rive_animation_controller.dart index 13b379c7..28ec2b7a 100644 --- a/lib/src/rive_core/rive_animation_controller.dart +++ b/lib/src/rive_core/rive_animation_controller.dart @@ -29,4 +29,5 @@ abstract class RiveAnimationController { bool init(T core) => true; void dispose() {} + void reset() {} }