AnyInspectClient constructor

AnyInspectClient({
  1. String? id,
  2. String? appIdentifier,
  3. String? appName,
  4. String? appVersion,
  5. String? appBuildNumber,
  6. String? deviceId,
  7. String? deviceName,
  8. bool? deviceIsPhysical,
  9. String? deviceSystem,
  10. String? deviceSystemVersion,
  11. List<AnyInspectPlugin> plugins = const [],
})

Implementation

AnyInspectClient({
  String? id,
  this.appIdentifier,
  this.appName,
  this.appVersion,
  this.appBuildNumber,
  this.deviceId,
  this.deviceName,
  this.deviceIsPhysical,
  this.deviceSystem,
  this.deviceSystemVersion,
  this.plugins = const [],
}) {
  if (id != null) this.id = id;
}