MetaDataModel constructor

const MetaDataModel({
  1. String? gender,
  2. required Location location,
  3. String? networkType,
  4. bool? vpnUsed,
  5. String? deviceIp4,
  6. String? deviceIp6,
  7. required String deviceType,
  8. required String deviceIdentifier,
  9. required String deviceId,
  10. required String systemName,
  11. required String systemVersion,
  12. required String appVersion,
  13. String? sdkVersion,
  14. required String timestamp,
  15. required FeatureFlagsUsed ffUsed,
  16. 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,
});