textMessages property

Stream<String> get textMessages

Text messages only, which is what most applications want.

Implementation

Stream<String> get textMessages =>
    messages.where((message) => message is String).cast<String>();