messageDeliveredStatusFromJson function

MessageStatusDetail messageDeliveredStatusFromJson(
  1. String str
)

Parses a JSON string and returns a MessageStatusDetail object representing the delivered message status.

The str parameter is a JSON string.

Returns a MessageStatusDetail object.

Implementation

MessageStatusDetail messageDeliveredStatusFromJson(String str) =>
    MessageStatusDetail.fromJson(json.decode(str));