MetaDataModel constructor
const
MetaDataModel({
- String? gender,
- required Location location,
- String? networkType,
- bool? vpnUsed,
- String? deviceIp4,
- String? deviceIp6,
- required String deviceType,
- required String deviceIdentifier,
- required String deviceId,
- required String systemName,
- required String systemVersion,
- required String appVersion,
- String? sdkVersion,
- required String timestamp,
- required FeatureFlagsUsed ffUsed,
- Map<
String, dynamic> ? extraData,
Implementation
const MetaDataModel({
this.gender,
required this.location,
this.networkType,
this.vpnUsed,
this.deviceIp4,
this.deviceIp6,
required this.deviceType,
required this.deviceIdentifier,
required this.deviceId,
required this.systemName,
required this.systemVersion,
required this.appVersion,
this.sdkVersion,
required this.timestamp,
required this.ffUsed,
this.extraData,
});