image method

RssBuilder image(
  1. String? link,
  2. String? title,
  3. String? url, {
  4. String? description,
  5. int? height,
  6. int? width,
})

Implementation

RssBuilder image(
  String? link,
  String? title,
  String? url, {
  String? description,
  int? height,
  int? width,
}) {
  _channelBuilder._image(
    link,
    title,
    url,
    description: description,
    height: height,
    width: width,
  );
  return this;
}