parse static method

SourceEdit parse(
  1. Map m
)

Implementation

static SourceEdit parse(Map m) {
  return new SourceEdit(m['offset'], m['length'], m['replacement'],
      id: m['id']);
}