RPImageChoice constructor

RPImageChoice({
  1. required String imageUrl,
  2. String? key,
  3. dynamic value,
  4. required String description,
})

Implementation

RPImageChoice({
  required this.imageUrl,
  this.key,
  this.value,
  required this.description,
}) : super();