parse static method

ServerLogEntry parse(
  1. Map m
)

Implementation

static ServerLogEntry parse(Map m) {
  return new ServerLogEntry(m['time'], m['kind'], m['data']);
}