runAllExamples static method

Future<void> runAllExamples()

Run all examples

Implementation

static Future<void> runAllExamples() async {
  initialize();

  Logar.info('Starting Logar examples', tag: 'EXAMPLE');

  _basicLoggingExample();
  _taggedLoggingExample();
  _dataLoggingExample();
  _errorLoggingExample();
  _networkLoggingExample();
  _lifecycleLoggingExample();
  _businessLogicExample();
  _migrationExample();
  _configurationExample();
  await _externalCollectorExample();
  _performanceExample();

  Logar.info('Completed all Logar examples', tag: 'EXAMPLE');
}