Input$CancelCheckoutInput constructor

Input$CancelCheckoutInput({
  1. String? reason,
  2. String? screen,
  3. String? description,
})

Implementation

factory Input$CancelCheckoutInput({
  String? reason,
  String? screen,
  String? description,
}) =>
    Input$CancelCheckoutInput._({
      if (reason != null) r'reason': reason,
      if (screen != null) r'screen': screen,
      if (description != null) r'description': description,
    });