Input$EmailTempVariablesCompanyInput constructor

Input$EmailTempVariablesCompanyInput({
  1. String? name,
  2. String? website,
  3. String? phone,
  4. String? address,
})

Implementation

factory Input$EmailTempVariablesCompanyInput({
  String? name,
  String? website,
  String? phone,
  String? address,
}) =>
    Input$EmailTempVariablesCompanyInput._({
      if (name != null) r'name': name,
      if (website != null) r'website': website,
      if (phone != null) r'phone': phone,
      if (address != null) r'address': address,
    });