1
2
3
4
5
6
7
8
/// Created by Capt. Michael @ CaptNotes.com on 02/17/2020.
class Singleton {
Singleton._();

static final _instance = Singleton._();

factory Singleton.getInstance() => _instance;
}