MandrillOptions constructor

const MandrillOptions({
  1. String scheme = 'https',
  2. String host = 'mandrillapp.com',
  3. int port = 443,
  4. String pathPrefix = '/api/1.0/',
  5. Map<String, String> headers = const {'Content-Type' : 'application/json', 'User-Agent' : 'Mandrill-Dart/1.0.4'},
})

Implementation

const MandrillOptions({
  this.scheme = 'https',
  this.host = 'mandrillapp.com',
  this.port = 443,
  this.pathPrefix = '/api/1.0/',
  this.headers = const {
    'Content-Type': 'application/json',
    'User-Agent': 'Mandrill-Dart/1.0.4'
  },
});