reportReasonFake property

ReportReasonFake? reportReasonFake

The chat represents a fake account

Implementation

ReportReasonFake? get reportReasonFake {
  if (this is ReportReasonFake) {
    return this as ReportReasonFake;
  }
  return null;
}