getSMS method

Future<Message> getSMS(
  1. String messageSid
)

getSMS Get all data of a specific message Pass messageSid as a non null Message SID.

Implementation

Future<Message> getSMS(String messageSid) async {
  return await _smsService.getSmsData(
      messageSID: messageSid, twilioCreds: _twilioCreds);
}