InputSource constructor

InputSource({
  1. String? passwordParam,
  2. String? url,
  3. String? username,
})

Implementation

InputSource({
  this.passwordParam,
  this.url,
  this.username,
});