Input$CorporateUpdateRatingInput constructor

Input$CorporateUpdateRatingInput({
  1. double? mark,
  2. String? comment,
  3. String? reviewType,
})

Implementation

factory Input$CorporateUpdateRatingInput({
  double? mark,
  String? comment,
  String? reviewType,
}) =>
    Input$CorporateUpdateRatingInput._({
      if (mark != null) r'mark': mark,
      if (comment != null) r'comment': comment,
      if (reviewType != null) r'reviewType': reviewType,
    });