parse static method

Implementation

static ExecutionLaunchData parse(Map m) => new ExecutionLaunchData(m['file'],
    kind: m['kind'],
    referencedFiles: m['referencedFiles'] == null
        ? null
        : new List.from(m['referencedFiles']));