Result constructor

Result({
  1. required String itemType,
  2. required String title,
  3. required String url,
})

Returns a new Result instance.

Implementation

Result({
  required this.itemType,
  required this.title,
  required this.url,
});