ContainerServiceLogEvent.fromJson constructor

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

Implementation

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