Input$FBCatalogSyncAttributesInput constructor

Input$FBCatalogSyncAttributesInput({
  1. bool? active,
  2. bool? color,
  3. bool? gender,
  4. bool? size,
  5. bool? ageGroup,
  6. bool? material,
  7. bool? pattern,
})

Implementation

factory Input$FBCatalogSyncAttributesInput({
  bool? active,
  bool? color,
  bool? gender,
  bool? size,
  bool? ageGroup,
  bool? material,
  bool? pattern,
}) =>
    Input$FBCatalogSyncAttributesInput._({
      if (active != null) r'active': active,
      if (color != null) r'color': color,
      if (gender != null) r'gender': gender,
      if (size != null) r'size': size,
      if (ageGroup != null) r'ageGroup': ageGroup,
      if (material != null) r'material': material,
      if (pattern != null) r'pattern': pattern,
    });