GoogleCastImage constructor

GoogleCastImage({
  1. required Uri url,
  2. int? height,
  3. int? width,
})

Creates a new GoogleCastImage instance.

Implementation

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