reportReasonCustom property

ReportReasonCustom? reportReasonCustom

A custom reason provided by the user

Implementation

ReportReasonCustom? get reportReasonCustom {
  if (this is ReportReasonCustom) {
    return this as ReportReasonCustom;
  }
  return null;
}