reportReasonUnrelatedLocation property

ReportReasonUnrelatedLocation? reportReasonUnrelatedLocation

The location-based chat is unrelated to its stated location

Implementation

ReportReasonUnrelatedLocation? get reportReasonUnrelatedLocation {
  if (this is ReportReasonUnrelatedLocation) {
    return this as ReportReasonUnrelatedLocation;
  }
  return null;
}