v1GetWalletsRequest.fromJson constructor

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

Implementation

factory v1GetWalletsRequest.fromJson(Map<String, dynamic> json) {
  final _organizationId = json['organizationId'] as String;
  return v1GetWalletsRequest(
    organizationId: _organizationId,
  );
}