ReplaceAll class
Replaces the occurrence of the keys of replaces
in text
with the corresponding value of replaces
.
final _escape = ReplaceAll(const {"\\": r"\\", "\n": r"\n"});
_escape.apply(text);
Constructors
-
ReplaceAll(Map<
String, String> replaces)
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
apply(
String text) → String -
Applies the replacement to the given
text
. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited