CourierClient constructor
CourierClient({})
Implementation
CourierClient({
String? jwt,
String? clientKey,
required String userId,
String? connectionId,
String? tenantId,
bool? showLogs,
}) : options = CourierClientOptions(
id: const Uuid().v4(),
jwt: jwt,
clientKey: clientKey,
userId: userId,
connectionId: connectionId,
tenantId: tenantId,
showLogs: showLogs ?? kDebugMode,
);