Phone constructor

Phone({
  1. String? phone,
  2. bool? isPhoneVerified,
})

Implementation

factory Phone({
  $core.String? phone,
  $core.bool? isPhoneVerified,
}) {
  final _result = create();
  if (phone != null) {
    _result.phone = phone;
  }
  if (isPhoneVerified != null) {
    _result.isPhoneVerified = isPhoneVerified;
  }
  return _result;
}