PlatformWalletException.fromJson constructor
Implementation
factory PlatformWalletException.fromJson(Map<String, dynamic> json) =>
PlatformWalletException(
kind: PlatformWalletExceptionKind.fromString(json["error"]),
error: json["error"],
description: json["description"],
);