setCommentMinimumCharacterCount static method

Future<void> setCommentMinimumCharacterCount(
  1. int limit, [
  2. List<ReportType>? reportTypes
])

Sets a minimum number of characters as a requirement for the comments field in the different report types. limit int number of characters reportTypes Optional list of ReportType. If it's not passed, the limit will apply to all report types.

Implementation

static Future<void> setCommentMinimumCharacterCount(
  int limit, [
  List<ReportType>? reportTypes,
]) async {
  return _host.setCommentMinimumCharacterCount(
    limit,
    reportTypes?.mapToString(),
  );
}