TextMessage class
Holds a text messages (SMS).
- Annotations
-
- @JsonSerializable(fieldRename: FieldRename.snake, includeIfNull: false)
Constructors
- TextMessage.new({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
- 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
- hashCode → int
-
The hash code for this object.
no setterinherited
- id ↔ int?
-
getter/setter pair
- 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
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited