instance property

Fps get instance

单例

Implementation

static Fps get instance {
  if (_instance == null) {
    _instance = Fps._();
  }
  return _instance!;
}