debugOptions property

DebugOptions get debugOptions

A getter that returns the current debug options.

Throws an Exception when Environment.init not called before and Environment not initialized.

Implementation

DebugOptions get debugOptions {
  if (_instance == null) {
    throw Exception('Need call init method first!');
  }

  return _debugOptions;
}