Input$TagInput constructor

Input$TagInput({
  1. String? name,
  2. String? content,
})

Implementation

factory Input$TagInput({
  String? name,
  String? content,
}) =>
    Input$TagInput._({
      if (name != null) r'name': name,
      if (content != null) r'content': content,
    });