OTPSMS constructor

OTPSMS({
  1. String? otpSmsId,
  2. String? phone,
  3. bool? isVerified,
})

Implementation

factory OTPSMS({
  $core.String? otpSmsId,
  $core.String? phone,
  $core.bool? isVerified,
}) {
  final $result = create();
  if (otpSmsId != null) {
    $result.otpSmsId = otpSmsId;
  }
  if (phone != null) {
    $result.phone = phone;
  }
  if (isVerified != null) {
    $result.isVerified = isVerified;
  }
  return $result;
}