SdkVersion constructor
SdkVersion({})
Creates an SdkVersion object which represents the SDK that created an Event.
Implementation
SdkVersion({
required this.name,
required this.version,
List<String>? integrations,
List<SentryPackage>? packages,
this.unknown,
}) :
// List.from prevents from having immutable lists
_integrations = List.from(integrations ?? []),
_packages = List.from(packages ?? []);