CuoralLauncher constructor

const CuoralLauncher({
  1. Key? key,
  2. required String publicKey,
  3. Color backgroundColor = Colors.blueAccent,
  4. Icon icon = const Icon(Icons.chat),
  5. bool isVisible = true,
  6. Alignment position = Alignment.bottomRight,
  7. String? email,
  8. String? firstName,
  9. String? lastName,
})

Implementation

const CuoralLauncher({
  super.key,
  required this.publicKey,
  this.backgroundColor = Colors.blueAccent,
  this.icon = const Icon(Icons.chat),
  this.isVisible = true,
  this.position = Alignment.bottomRight,
  this.email,
  this.firstName,
  this.lastName,
});