Joke constructor

Joke({
  1. required String iconUrl,
  2. required String id,
  3. required String url,
  4. required String value,
})

Implementation

Joke({
  required this.iconUrl,
  required this.id,
  required this.url,
  required this.value,
});