LastMessage.fromJson constructor

LastMessage.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory LastMessage.fromJson(Map<String, dynamic> json) => LastMessage(
      body: json["body"],
      createdAt: json["createdAt"] == null
          ? null
          : DateTime.parse(json["createdAt"]),
      createdBy: json["createdBy"],
    );