v1GetApiKeysRequest.fromJson constructor

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

Implementation

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