Dart單例模式最佳實踐

/// Created by Capt. Michael @ CaptNotes.com on 02/17/2020.
class Singleton {
  Singleton._();

  static final _instance = Singleton._();

  factory Singleton.getInstance() => _instance;
}
相關文章
相關標籤/搜索