ContainerServiceLogEvent.fromJson constructor
Implementation
factory ContainerServiceLogEvent.fromJson(Map<String, dynamic> json) {
return ContainerServiceLogEvent(
createdAt: timeStampFromJson(json['createdAt']),
message: json['message'] as String?,
);
}