TGetWalletsBody.fromJson constructor

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

Implementation

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