csentence function

String csentence({
  1. int min = 12,
  2. int? max = 18,
})

return a random chinese sentence.

while max is null, min is the length of result. or the length is random between min to max.

Implementation

String csentence({int min = 12, int? max = 18}) {
  return '${ctitle(min: min, max: max)}。';
}