initialize method

  1. @override
void initialize()
override

Lifecycle method called in the base class constructor.

Used to modify the capabilities of this client from mixins, or perform any other initialization that is required.

Implementation

@override
void initialize() {
  capabilities.sampling ??= {};
  super.initialize();
}