DocumentDto constructor

DocumentDto(
  1. String id,
  2. Map<String, dynamic> data,
  3. DateTime createdAt,
  4. DateTime updatedAt,
)

Implementation

DocumentDto(
  this.id,
  this.data,
  this.createdAt,
  this.updatedAt,
);