refactor: removed unnecessary async

Co-authored-by: Erick <erickzanardoo@gmail.com>
pull/172/head
Alejandro Santiago 4 years ago committed by GitHub
parent ae5e8610f8
commit 4f0412b708
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -19,7 +19,7 @@ class GoogleLetter extends BodyComponent with InitialPosition {
/// Activates this [GoogleLetter]. /// Activates this [GoogleLetter].
// TODO(alestiago): Improve doc comment once activate and deactivate // TODO(alestiago): Improve doc comment once activate and deactivate
// are implemented with the actual assets. // are implemented with the actual assets.
Future<void> activate() async => _sprite.activate(); Future<void> activate() => _sprite.activate();
/// Deactivates this [GoogleLetter]. /// Deactivates this [GoogleLetter].
Future<void> deactivate() => _sprite.deactivate(); Future<void> deactivate() => _sprite.deactivate();

Loading…
Cancel
Save