parse static method

ExtractLocalVariableFeedback parse(
  1. Map m
)
override

Implementation

static ExtractLocalVariableFeedback parse(Map m) =>
    new ExtractLocalVariableFeedback(new List.from(m['names']),
        new List.from(m['offsets']), new List.from(m['lengths']),
        coveringExpressionOffsets: m['coveringExpressionOffsets'] == null
            ? null
            : new List.from(m['coveringExpressionOffsets']),
        coveringExpressionLengths: m['coveringExpressionLengths'] == null
            ? null
            : new List.from(m['coveringExpressionLengths']));