CreateAccountRow constructor

const CreateAccountRow({
  1. Key? key,
  2. String? descriptionText,
  3. String? actionText,
  4. void onPressed()?,
})

Implementation

const CreateAccountRow({
  Key? key,
  this.descriptionText,
  this.actionText,
  this.onPressed,
}) : super(key: key);