Input$UserCustomInput constructor

Input$UserCustomInput({
  1. String? customKey,
  2. String? customValue,
})

Implementation

factory Input$UserCustomInput({
  String? customKey,
  String? customValue,
}) =>
    Input$UserCustomInput._({
      if (customKey != null) r'customKey': customKey,
      if (customValue != null) r'customValue': customValue,
    });