v1DeleteWalletsResult.fromJson constructor

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

Implementation

factory v1DeleteWalletsResult.fromJson(Map<String, dynamic> json) {
  final _walletIds = (json['walletIds'] as List).map((e) => e as String).toList();
  return v1DeleteWalletsResult(
    walletIds: _walletIds,
  );
}