instance property

Zixflow get instance

Get the singleton instance of Zixflow

Implementation

static Zixflow get instance {
  if (_instance == null) {
    throw StateError(
      'Zixflow SDK must be initialized before accessing instance.\n'
      'Call Zixflow.initialize() first.',
    );
  }
  return _instance!;
}