SMS constructor

const SMS({
  1. String? message,
  2. required String phoneNumber,
})

Construct a new SMS instance.

Implementation

const SMS({
  this.message,
  required this.phoneNumber,
});