SmsBaoGateway constructor

const SmsBaoGateway({
  1. required String username,
  2. String? password,
  3. String? apiKey,
  4. String? projectId,
})

Creates a new smsbao gateway.

You can use either password or apiKey to authenticate.

Implementation

const SmsBaoGateway({
  required this.username,
  this.password,
  this.apiKey,
  this.projectId,
});