fromRawValue static method
Implementation
static SDKComponent? fromRawValue(String value) {
return SDKComponent.values.cast<SDKComponent?>().firstWhere(
(c) => c?.rawValue == value || c?.analyticsKey == value.toLowerCase(),
orElse: () => null,
);
}