TWBase64 class abstract

Base64 encode / decode functions

Constructors

TWBase64.new()

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

TWBase64Decode(Pointer<Void> string) Pointer<Void>
Decode a Base64 input with the default alphabet (RFC4648 with '+', '/')
TWBase64DecodeUrl(Pointer<Void> string) Pointer<Void>
Decode a Base64 input with the alphabet safe for URL-s and filenames (RFC4648 with '-', '_')
TWBase64Encode(Pointer<Void> data) Pointer<Utf8>
Encode an input to Base64 with the default alphabet (RFC4648 with '+', '/')
TWBase64EncodeUrl(Pointer<Void> data) Pointer<Utf8>
Encode an input to Base64 with the alphabet safe for URL-s and filenames (RFC4648 with '-', '_')