GiphyInfo constructor

const GiphyInfo({
  1. required String url,
  2. required double width,
  3. required double height,
})

A class that contains extra information about a Giphy attachment.

Implementation

const GiphyInfo({
  required this.url,
  required this.width,
  required this.height,
});