setValues method

void setValues({
  1. String? phone,
  2. String? email,
})

Implementation

void setValues({
  String? phone,
  String? email,
}) {
  setValue('phone', phone ?? '');
  setValue('email', email ?? '');
}