fromMap static method

ExternalWalletResponse fromMap(
  1. Map map
)

Implementation

static ExternalWalletResponse fromMap(Map<dynamic, dynamic> map) {
  String? walletName = map["external_wallet"] as String?;
  return ExternalWalletResponse(walletName);
}