documentTitle property

String documentTitle

Implementation

String get documentTitle {
  if (contentDetail.documentTitle == null) {
    throw Exception('documentTitle is null');
  }
  return contentDetail.documentTitle!;
}