Base32Encoder class
A utility class for encoding strings and bytes into Base32 format.
Constructors
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
- 
  encode(String data, [String? customAlphabet]) → String 
- Encode the provided string into a Base32 encoded string. Optionally, you can specify a custom alphabet for encoding.
- 
  encodeBytes(List< int> data, [String? customAlphabet]) → String
- Encode the provided List of bytes into a Base32 encoded string. Optionally, you can specify a custom alphabet for encoding.
- 
  encodeNoPadding(String data, [String? customAlphabet]) → String 
- Encode the provided string into a Base32 encoded string without padding characters. Optionally, you can specify a custom alphabet for encoding.
- 
  encodeNoPaddingBytes(List< int> data, [String? customAlphabet]) → String
- Encode the provided List of bytes into a Base32 encoded string without padding characters. Optionally, you can specify a custom alphabet for encoding.