parse static method

DiagnosticMessage parse(
  1. Map m
)

Implementation

static DiagnosticMessage parse(Map m) {
  return new DiagnosticMessage(m['message'], Location.parse(m['location']));
}