EasySMS constructor

const EasySMS({
  1. required Iterable<Gateway> gateways,
  2. Strategy strategy = const OrderStrategy(),
  3. Duration timeout = const Duration(seconds: 10),
})

Creates a new EasySMS instance.

Implementation

const EasySMS({
  required this.gateways,
  this.strategy = const OrderStrategy(),
  this.timeout = const Duration(seconds: 10),
});