UContentCreateParams constructor

UContentCreateParams({
  1. required String title,
  2. required String description,
  3. required String subTitle,
  4. required List<int> tags,
  5. String? instagram,
})

Implementation

UContentCreateParams({
  required this.title,
  required this.description,
  required this.subTitle,
  required this.tags,
  this.instagram,
});