Created
June 8, 2021 01:03
-
-
Save diefferson/fddfd917870aeabfc65fc5a0a4191cf8 to your computer and use it in GitHub Desktop.
Stark Disposable Interface
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:stark/stark.dart'; | |
class LoginViewModel implements Disposable { | |
@override | |
dispose(){ | |
//this method is called when the LoginViewModel is diposed, use to dispose your RX Subjects or Streams | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment