WalletFlowUtils class
Utility class for working with PKPass files and converting them to a base64 encoded string.
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
-
loadPkpassFileAsBase64(
{required String path}) → Future< String> -
Reads a PKPass file from the local filesystem at the given
path
and returns its contents encoded as a base64 string. -
loadPkpassFileFromNetworkAsBase64(
{required String url, Map< String, String> ? headers}) → Future<String> -
Downloads a PKPass file from the specified
url
and returns its contents encoded as a base64 string.