Phone constructor

const Phone({
  1. required String? phoneNumber,
  2. bool? isOptIn,
})

Implementation

const Phone({
  required this.phoneNumber,
  this.isOptIn,
});