fromMe property

bool fromMe

Implementation

bool get fromMe {
  if (Twilio.instance == null &&
      Twilio.instance?.credential.twilioNumber == null) {
    throw TwilioInstanceException();
  }
  return Twilio.instance?.credential.twilioNumber == from;
}