UnBaser class
Properties
-
base
→ int
-
final
-
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
-
toBase10(String string)
→ int
-
convert
string
in base 10
exemple
'''dart
var un = UnBaser(16);
print(un.toBase10("5de88"));//output 384648
'''
-
toString()
→ String
-
A string representation of this object.
inherited
-
unBase(int num)
→ String
-
convert
num
in basebase
exemple
'''dart
var un = UnBaser(16);
print(un.unBase(384648));//output 5de88
'''