TestLocation.deserialize constructor
- 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);