Comment constructor

Comment([
  1. String? data = ''
])

Implementation

factory Comment([String? data = '']) => Comment._(data ?? '');