initialize method

Future<void> initialize(
  1. String apiKey,
  2. String uuid
)

Initializes the ReferralHero Flutter plugin with the provided apiKey and uuid.

This method should be implemented by platform-specific classes to handle the initialization process.

Implementation

Future<void> initialize(String apiKey, String uuid) {
  throw UnimplementedError('initialize() has not been implemented.');
}