SMS constructor

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

Construct a new SMS instance.

Implementation

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