Feed constructor

Feed({
  1. String? apiKey,
  2. String? appId,
  3. String? userId,
  4. String? userToken,
})

Returns a new Feed instance.

Implementation

Feed({
  this.apiKey,
  this.appId,
  this.userId,
  this.userToken,
});