EmailView constructor

const EmailView({
  1. Key? key,
  2. String? email,
  3. TextStyle? textStyle,
  4. TextAlign textAlign = TextAlign.center,
})

Implementation

const EmailView({
  super.key,
  this.email,
  this.textStyle,
  this.textAlign = TextAlign.center,
});