fromString static method

SentMessageRejectReason? fromString(
  1. String? id
)

Implementation

static SentMessageRejectReason? fromString(String? id) =>
    id == null ? null : values.firstWhere((type) => type.id == id);