PlatformWalletException.fromJson constructor

PlatformWalletException.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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