instance property

TesterPayKit get instance

Get the singleton instance

Implementation

static TesterPayKit get instance {
  if (_instance == null) {
    throw StateError(
      'TesterPayKit not initialized. Call TesterPayKit.initialize() first.',
    );
  }
  return _instance!;
}