RssCloud constructor

RssCloud(
  1. String? domain,
  2. String? port,
  3. String? path,
  4. String? registerProcedure,
  5. String? protocol,
)

Constructor for the RssCloud class.

Initialize the RSS cloud properties domain, port, path, registerProcedure, and protocol.

Implementation

RssCloud(
  this.domain,
  this.port,
  this.path,
  this.registerProcedure,
  this.protocol,
);