Obfuscator class

Generate an obfuscated key function and append it to lib/secret.dart. If lib/secret.dart does not exist, create a skeleton class. The generated function will return the original key when called. The key can be provided as a plaintext string or read from a file. The obfuscation is done using a simple XOR with a fixed mask.

Constructors

Obfuscator()

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

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

Static Methods

generate(String input, String functionName) → void