GistComment constructor

GistComment({
  1. int? id,
  2. User? user,
  3. DateTime? createdAt,
  4. DateTime? updatedAt,
  5. String? body,
})

Implementation

GistComment({this.id, this.user, this.createdAt, this.updatedAt, this.body});