Ozone.fromSession constructor

Ozone.fromSession(
  1. Session session, {
  2. Map<String, String>? headers,
  3. Protocol? protocol,
  4. String? service,
  5. String? relayService,
  6. Duration? timeout,
  7. RetryConfig? retryConfig,
  8. GetClient? mockedGetClient,
  9. PostClient? mockedPostClient,
})

Returns the new instance of Ozone.

Implementation

factory Ozone.fromSession(
  final Session session, {
  final Map<String, String>? headers,
  final Protocol? protocol,
  final String? service,
  final String? relayService,
  final Duration? timeout,
  final RetryConfig? retryConfig,
  final GetClient? mockedGetClient,
  final PostClient? mockedPostClient,
}) =>
    _Ozone(
      BlueskyServiceContext(
        atproto: atp.ATProto.fromSession(
          headers: headers,
          session,
          protocol: protocol,
          service: service,
          relayService: relayService,
          timeout: timeout,
          retryConfig: retryConfig,
          mockedGetClient: mockedGetClient,
          mockedPostClient: mockedPostClient,
        ),
        headers: headers,
        protocol: protocol,
        service: service,
        relayService: relayService,
        session: session,
        timeout: timeout,
        retryConfig: retryConfig,
        mockedGetClient: mockedGetClient,
        mockedPostClient: mockedPostClient,
      ),
    );