SecuritySchemeId.fromJson constructor

SecuritySchemeId.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory SecuritySchemeId.fromJson(Map<String, Object?> json) {
  return SecuritySchemeId(
    id: json[r'id'] as String? ?? '',
  );
}