TestLocation.deserialize constructor

TestLocation.deserialize(
  1. Map serialized
)

Deserializes the result of TestLocation.serialize into a new TestLocation.

Implementation

TestLocation.deserialize(Map serialized)
    : this(Uri.parse(serialized['url'] as String), serialized['line'] as int,
          serialized['column'] as int);