InitParams constructor

InitParams({
  1. required String writeKey,
  2. required String apiKey,
  3. String host = 'https://dittofeed.com',
})

Creates a new instance of InitParams.

Implementation

InitParams({
  required this.writeKey,
  required this.apiKey,
  this.host = 'https://dittofeed.com',
});