Input$CompanyCustomerInput constructor

Input$CompanyCustomerInput({
  1. Enum$CustomerPhaseEnum? phase,
  2. String? score,
})

Implementation

factory Input$CompanyCustomerInput({
  Enum$CustomerPhaseEnum? phase,
  String? score,
}) =>
    Input$CompanyCustomerInput._({
      if (phase != null) r'phase': phase,
      if (score != null) r'score': score,
    });