CuoralWidget constructor

CuoralWidget({
  1. Key? key,
  2. required String publicKey,
  3. bool showWidget = true,
  4. String? firstName,
  5. String? lastName,
  6. String? email,
})

Implementation

CuoralWidget({
  super.key,
  required this.publicKey,
  this.showWidget = true,
  this.firstName,
  this.lastName,
  this.email,
}) : assert(publicKey.isNotEmpty, "publicKey must not be empty");