TextMessage class

Holds a text messages (SMS).

Inheritance
  • Object
  • Serializable
  • Data
  • TextMessage
Annotations
  • @JsonSerializable(fieldRename: FieldRename.none, includeIfNull: false)

Constructors

TextMessage({int? id, String? address, String? body, int? size, bool? read, DateTime? date, DateTime? dateSent, SmsType? type, SmsStatus? status})
TextMessage.fromJson(Map<String, dynamic> json)
factory
TextMessage.fromSmsMessage(SmsMessage sms)
factory

Properties

$type String?
The runtime class name (type) of this object. Used for deserialization from JSON objects.
getter/setter pairinherited
address String?
The receiver address of this message
getter/setter pair
body String?
The text body of this message.
getter/setter pair
date DateTime?
The date this message was created.
getter/setter pair
dateSent DateTime?
The date this message was sent.
getter/setter pair
format → DataType
The format of this data as a DataType.
no setterinherited
fromJsonFunction Function
The function which can convert a JSON string to an object of this type.
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
id int?
getter/setter pair
jsonType String
Return the __type to be used for JSON serialization of this class. Default is runtimeType. Only specify this if you need another type.
no setteroverride
read bool?
Has the message been read?
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
size int?
The size in bytes of the body of the message.
getter/setter pair
status ↔ SmsStatus?
The state of the message:
getter/setter pair
type ↔ SmsType?
The type of message:
getter/setter pair

Methods

equivalentTo(Data other) bool
Is this data equivalent to other?
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Return a JSON encoding of this object.
override
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

dataType → const String